ember-zeroclipboard
v0.3.0
Published
ZeroClipboard functionality wrapped up in a simple Ember component. Requires Ember v1.12 or greater.
Downloads
6
Readme
ember-zeroclipboard
ZeroClipboard functionality wrapped up in a simple Ember component. Requires Ember v1.12 or greater.
Installation
# From within your ember-cli project
ember install:addon ember-zeroclipboard
Usage
{{#zero-clipboard text=textToCopy afterCopy='didCopy'}}Copy{{/zero-clipboard}}
You can also configure ZeroClipboard any way you want by simply specifying the options in your application's config/environment.js
file:
ENV['ember-zeroclipboard'] = {
activeClass: 'active',
hoverClass: 'hover'
};