mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2025-07-04 02:03:15 -07:00
add lmde-3-disk-encryption
This commit is contained in:
7
lmde-3-disk-encryption/lmde-3-disk-encryption.js
Executable file
7
lmde-3-disk-encryption/lmde-3-disk-encryption.js
Executable file
@ -0,0 +1,7 @@
|
||||
function copyToClipboard(element) {
|
||||
var $temp = $("<textarea>");
|
||||
$("body").append($temp);
|
||||
$temp.val($(element).text()).select();
|
||||
document.execCommand("copy");
|
||||
$temp.remove();
|
||||
}
|
Reference in New Issue
Block a user