NET-Web-API-w-Angular/my-app/node_modules/custom-event
2024-02-08 19:38:41 -05:00
..
test Updated the files. 2024-02-08 19:38:41 -05:00
.npmignore Updated the files. 2024-02-08 19:38:41 -05:00
.travis.yml Updated the files. 2024-02-08 19:38:41 -05:00
History.md Updated the files. 2024-02-08 19:38:41 -05:00
index.js Updated the files. 2024-02-08 19:38:41 -05:00
LICENSE Updated the files. 2024-02-08 19:38:41 -05:00
Makefile Updated the files. 2024-02-08 19:38:41 -05:00
package.json Updated the files. 2024-02-08 19:38:41 -05:00
README.md Updated the files. 2024-02-08 19:38:41 -05:00

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