tree: 9ca443cb1e327a736b6662fc73132f1db05a5590 [path history] [tgz]
  1. test/
  2. .npmignore
  3. .travis.yml
  4. History.md
  5. index.js
  6. LICENSE
  7. Makefile
  8. package.json
  9. README.md
src/third_party/devtools/node_modules/custom-event/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);