|
|
пре 2 година | |
|---|---|---|
| .. | ||
| test | пре 2 година | |
| .npmignore | пре 2 година | |
| .travis.yml | пре 2 година | |
| History.md | пре 2 година | |
| LICENSE | пре 2 година | |
| Makefile | пре 2 година | |
| README.md | пре 2 година | |
| index.js | пре 2 година | |
| package.json | пре 2 година | |
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);