plus simplement. on ajoute aussi le copié dans le textarea, comme le fait le privé pour les modeles
15 lines
428 B
JavaScript
15 lines
428 B
JavaScript
jQuery(function ($) {
|
|
$('.toClip').on('mousedown', function (e) {
|
|
e.preventDefault();
|
|
const t = $(this).data('clipboard-text') ?? $(this).text();
|
|
navigator.clipboard.writeText(t).then(() => {
|
|
barre_inserer(t);
|
|
const html = `<span class="copierOk verte"><strong>✔ copié</strong></span>`;
|
|
$(this).append(html);
|
|
setTimeout(() => {
|
|
$(this).children('.copierOk').remove();
|
|
}, 1000);
|
|
});
|
|
});
|
|
});
|
|
|