Denis 346b78aee1 first commit il y a 2 ans
..
test 346b78aee1 first commit il y a 2 ans
.npmignore 346b78aee1 first commit il y a 2 ans
.travis.yml 346b78aee1 first commit il y a 2 ans
History.md 346b78aee1 first commit il y a 2 ans
LICENSE 346b78aee1 first commit il y a 2 ans
Makefile 346b78aee1 first commit il y a 2 ans
README.md 346b78aee1 first commit il y a 2 ans
index.js 346b78aee1 first commit il y a 2 ans
package.json 346b78aee1 first commit il y a 2 ans

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);