clipboard-component

0.1.5 • Public • Published

Clipboard

Clipboard library.

Installation

$ component install component/clipboard

Example

var Clipboard = require('clipboard');
var clip = new Clipboard(window);
 
clip.on('paste', function(e){
  e.items.forEach(function(item){
    console.log(item);
  });
});
 
clip.on('cut', function(){
  console.log('cut');
});
 
clip.on('copy', function(e){
  console.log('copy');
});

API

Clipboard#bind()

Bind event handlers. This is done for you in the constructor.

Clipboard#unbind()

Unbind event handlers.

Links

License

MIT

Dependencies (3)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i clipboard-component

    Weekly Downloads

    21

    Version

    0.1.5

    License

    none

    Last publish

    Collaborators

    • tjholowaychuk