Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. ["#copy-user-button","#copy-password-button"].map (id)->
  2. copybtn = new ZeroClipboard $(id)
  3. copybtn.on 'ready', (readyEvent) ->
  4. $(id).attr("data-original-title", "click to copy")
  5. .tooltip()
  6.  
  7. copybtn.on 'aftercopy', (event) ->
  8. $(id)
  9. .attr("data-original-title", "copied")
  10. .tooltip "show"
  11. .attr("data-original-title", "click to copy")
  12.  
  13. button#copy-user-button(type="button" data-clipboard-text="{{user}}").btn.btn-primary.btn-xs copy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement