|
|
5 өдөр өмнө | |
|---|---|---|
| .. | ||
| test | 5 өдөр өмнө | |
| .npmignore | 5 өдөр өмнө | |
| .travis.yml | 5 өдөр өмнө | |
| History.md | 5 өдөр өмнө | |
| LICENSE | 5 өдөр өмнө | |
| Makefile | 5 өдөр өмнө | |
| README.md | 5 өдөр өмнө | |
| index.js | 5 өдөр өмнө | |
| package.json | 5 өдөр өмнө | |
CustomEvent constructorhttps://developer.mozilla.org/en-US/docs/Web/API/CustomEvent.CustomEvent
$ npm install custom-event
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);