0.3.0 • Published 8 years ago

ember-zeroclipboard v0.3.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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'
};