NET-Web-API-w-Angular/my-app/node_modules/custom-event/README.md

37 lines
785 B
Markdown
Raw Normal View History

2024-02-09 00:38:41 +00:00
custom-event
============
### Cross-browser `CustomEvent` constructor
[![Sauce Test Status](https://saucelabs.com/browser-matrix/custom-event.svg)](https://saucelabs.com/u/custom-event)
[![Build Status](https://travis-ci.org/webmodules/custom-event.svg?branch=master)](https://travis-ci.org/webmodules/custom-event)
https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent.CustomEvent
Installation
------------
``` bash
$ npm install custom-event
```
Example
-------
``` js
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);
```