Skip to content

Instantly share code, notes, and snippets.

@hisasann
Created December 2, 2014 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hisasann/63ce6b7e0e1885522f94 to your computer and use it in GitHub Desktop.
Save hisasann/63ce6b7e0e1885522f94 to your computer and use it in GitHub Desktop.
ZeroClipboardを使った場合のサンプル
# コピーボタン
copy = document.querySelector '#copy'
clip = new ZeroClipboard(copy)
clip.on 'ready', ->
lo.l 'ready'
clip.on 'beforecopy', (e) ->
lo.l 'beforecopy'
copy.dataset.clipboardText = '上書きしちゃったー'
e.preventDefault()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment