text.js 417 B

12345678910111213
  1. import $ from 'jquery';
  2. $(document).ready(function() {
  3. $('.copy-to-clipboard').click(function(event) {
  4. var $tempElement = $('<input>');
  5. $('body').append($tempElement);
  6. $tempElement.val($(this).prev('input').val()).select();
  7. document.execCommand('Copy');
  8. $tempElement.remove();
  9. $(this).attr('data-hint', 'Copied to clipboard!').addClass('hint--left');
  10. });
  11. });