cryptpad/www/common/clipboard.js

46 lines
1,007 B
JavaScript
Raw Normal View History

define(['jquery'], function ($) {
var Clipboard = {};
2021-06-01 13:57:24 +00:00
var copy = function (text, multiline) {
var $ta = $('<input>', {
type: 'text',
}).val(text);
2021-06-01 13:57:24 +00:00
if (multiline) {
$ta = $('<textarea>').val(text);
}
$('body').append($ta);
if (!($ta.length && $ta[0].select)) {
// console.log("oops");
return;
}
var success = false;
try {
$ta[0].select();
document.execCommand('copy');
$ta[0].blur();
success = true;
} catch (err) {
console.log("error, could not copy to clipboard");
}
$ta.remove();
return success;
};
2021-06-01 13:57:24 +00:00
// copy arbitrary text to the clipboard
// return boolean indicating success
Clipboard.copy = function (text) {
return copy(text);
};
Clipboard.copy.multiline = function (text) {
return copy(text, true);
};
return Clipboard;
});