12 lines
337 B
JavaScript
12 lines
337 B
JavaScript
jQuery(function ($) {
|
|
const clipboard = new ClipboardJS('.toClip');
|
|
clipboard.on('success', function (e) {
|
|
let html = `<span class="copierOk verte"><strong>✔ copié</strong></span>`;
|
|
$(e.trigger).append(html);
|
|
setTimeout(() => {
|
|
$(e.trigger).children('.copierOk').remove();
|
|
e.clearSelection();
|
|
}, 1000);
|
|
});
|
|
});
|
|
|