Denis 346b78aee1 first commit hace 2 años
..
test 346b78aee1 first commit hace 2 años
.npmignore 346b78aee1 first commit hace 2 años
.travis.yml 346b78aee1 first commit hace 2 años
History.md 346b78aee1 first commit hace 2 años
LICENSE 346b78aee1 first commit hace 2 años
Makefile 346b78aee1 first commit hace 2 años
README.md 346b78aee1 first commit hace 2 años
index.js 346b78aee1 first commit hace 2 años
package.json 346b78aee1 first commit hace 2 años

README.md

custom-event

Cross-browser CustomEvent constructor

Sauce Test Status

Build Status

https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent.CustomEvent

Installation

$ npm install custom-event

Example

var CustomEvent = require('custom-event');

// add an appropriate event listener
target.addEventListener('cat', function(e) { process(e.detail) });

// create and dispatch the event
var event = new CustomEvent('cat', {
  detail: {
    hazcheeseburger: true
  }
});
target.dispatchEvent(event);