add lmde-3-disk-encryption

This commit is contained in:
2018-12-26 07:45:59 -08:00
parent 76a9a32474
commit 984ab4ce8f
4 changed files with 472 additions and 0 deletions

View File

@ -0,0 +1,7 @@
function copyToClipboard(element) {
var $temp = $("<textarea>");
$("body").append($temp);
$temp.val($(element).text()).select();
document.execCommand("copy");
$temp.remove();
}