clipboard.js 517 B

12345678910
  1. document.addEventListener('DOMContentLoaded', function () {
  2. if (typeof(ClipboardJS) !== 'undefined') {
  3. $('figure.highlight').each(function () {
  4. var id = 'code-' + Date.now() + (Math.random() * 1000 | 0);
  5. $(this).attr('id', id);
  6. $(this).prepend($(`<button class="button is-borderless is-radiusless is-small copy" data-clipboard-target="#${id} .code" title="Copy"><i class="fas fa-copy"></i></button>`));
  7. });
  8. new ClipboardJS('.highlight .copy');
  9. }
  10. });