Mayx's Home Page
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
645 B

  1. function initCopyButtons() {
  2. $('.copy').remove();
  3. $('div.highlight').each(function () {
  4. var $btn = $('<button>', { class: 'copy', type: 'button', text: '📋' });
  5. $(this).append($btn);
  6. $btn.on('click', function () {
  7. var code = $btn.siblings('pre').find('code').text().trim();
  8. navigator.clipboard.writeText(code)
  9. .then(function () { $btn.text('✅'); })
  10. .catch(function () { $btn.text('❌'); })
  11. .finally(function () { setTimeout(function () { $btn.text('📋'); }, 1500); });
  12. });
  13. });
  14. }
  15. $(function () {
  16. initCopyButtons();
  17. });