mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-27 10:00:41 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
b7f0a5d1a4
|
|
@ -757,6 +757,11 @@ $(document).ready( function() {
|
|||
}
|
||||
return e.which != 13;
|
||||
}); /* }}} */
|
||||
|
||||
$("body").on("click", ".copy-to-clipboard", function(ev) {
|
||||
console.log($(this).data());
|
||||
navigator.clipboard.writeText($(this).data("text"));
|
||||
});
|
||||
});
|
||||
|
||||
function onAddClipboard(ev) { /* {{{ */
|
||||
|
|
|
|||
|
|
@ -805,6 +805,11 @@ $(document).ready( function() {
|
|||
}
|
||||
return e.which != 13;
|
||||
}); /* }}} */
|
||||
|
||||
$("body").on("click", ".copy-to-clipboard", function(ev) {
|
||||
console.log($(this).data());
|
||||
navigator.clipboard.writeText($(this).data("text"));
|
||||
});
|
||||
});
|
||||
|
||||
function onAddClipboard(ev) { /* {{{ */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user