jbg1k

copy

Jul 2nd, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var btn{{ $url->id }} = document.getElementById('copy{{ $url->id }}');
  2. var clipboard = new ClipboardJS(btn{{ $url->id }});
  3.  
  4. clipboard.on('success', function() {
  5.     btn{{ $url->id }}.classList.replace('btn-light', 'btn-success');
  6.     btn{{ $url->id }}.innerHTML = '<i class="fas fa-check"></i> Copied!';
  7.     setTimeout(function() {
  8.         btn{{ $url->id }}.classList.replace('btn-success', 'btn-light');
  9.         btn{{ $url->id }}.innerHTML = '<i class="far fa-clipboard"></i> Copy';
  10.     }, 3000);
  11. });
Advertisement
Add Comment
Please, Sign In to add comment