Gogs df670eaa27 first commit 2 weeks ago
..
test df670eaa27 first commit 2 weeks ago
.npmignore df670eaa27 first commit 2 weeks ago
.travis.yml df670eaa27 first commit 2 weeks ago
History.md df670eaa27 first commit 2 weeks ago
LICENSE df670eaa27 first commit 2 weeks ago
Makefile df670eaa27 first commit 2 weeks ago
README.md df670eaa27 first commit 2 weeks ago
index.js df670eaa27 first commit 2 weeks ago
package.json df670eaa27 first commit 2 weeks ago

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