Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

extended-ui-misc-clipboardjs.js 703B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Clipboard
  3. */
  4. 'use strict';
  5. document.addEventListener('DOMContentLoaded', function (e) {
  6. const clipboardList = [].slice.call(document.querySelectorAll('.clipboard-btn'));
  7. const notyf = new Notyf({
  8. duration: 3000,
  9. dismissible: true,
  10. position: { x: 'right', y: 'top' }
  11. });
  12. if (ClipboardJS) {
  13. clipboardList.map(function (clipboardEl) {
  14. const clipboard = new ClipboardJS(clipboardEl);
  15. clipboard.on('success', function (e) {
  16. if (e.action === 'copy') {
  17. notyf.success('Copied to Clipboard!!');
  18. }
  19. });
  20. });
  21. } else {
  22. clipboardList.map(function (clipboardEl) {
  23. clipboardEl.setAttribute('disabled', true);
  24. });
  25. }
  26. });