Gogs df670eaa27 first commit vor 3 Wochen
..
test df670eaa27 first commit vor 3 Wochen
.npmignore df670eaa27 first commit vor 3 Wochen
.travis.yml df670eaa27 first commit vor 3 Wochen
History.md df670eaa27 first commit vor 3 Wochen
LICENSE df670eaa27 first commit vor 3 Wochen
Makefile df670eaa27 first commit vor 3 Wochen
README.md df670eaa27 first commit vor 3 Wochen
index.js df670eaa27 first commit vor 3 Wochen
package.json df670eaa27 first commit vor 3 Wochen

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