Files
limanapp/LiMan.UI/wwwroot/js/CBCopy.js
T
2021-10-14 10:53:53 +02:00

10 lines
272 B
JavaScript

window.clipboardCopy = {
copyText: function (text) {
navigator.clipboard.writeText(text).then(function () {
//alert("Copiato in clipboard!");
})
.catch(function (error) {
alert(error);
});
}
};