kiruthiga 55473b7e7c initial push 5 天之前
..
dist 55473b7e7c initial push 5 天之前
src 55473b7e7c initial push 5 天之前
.editorconfig 55473b7e7c initial push 5 天之前
.jshintignore 55473b7e7c initial push 5 天之前
.jshintrc 55473b7e7c initial push 5 天之前
.npmignore 55473b7e7c initial push 5 天之前
CHANGELOG.md 55473b7e7c initial push 5 天之前
LICENSE 55473b7e7c initial push 5 天之前
README.md 55473b7e7c initial push 5 天之前
bower.json 55473b7e7c initial push 5 天之前
gulpfile.js 55473b7e7c initial push 5 天之前
package.json 55473b7e7c initial push 5 天之前

README.md

crossvent

Cross-platform browser event handling

The event handler API used by dominus.

Install

Using Bower

bower install -S crossvent

Using npm

npm install -S crossvent

API

The API exposes a few methods that let you deal with event handling in a consistent manner across browsers.

crossvent.add(el, type, fn, capturing?)

Adds an event listener fn of type type to DOM element el.

crossvent.add(document.body, 'click', function (e) {
  console.log('clicked document body');
});

crossvent.remove(el, type, fn, capturing?)

Removes an event listener fn of type type from DOM element el.

crossvent.add(document.body, 'click', clicked);
crossvent.remove(document.body, 'click', clicked);

function clicked (e) {
  console.log('clicked document body');
}

crossvent.fabricate(el, type, model?)

Creates a synthetic custom event of type type and dispatches it on el. You can provide a custom model which will be accessible as e.detail.

crossvent.add(document.body, 'sugar', sugary);
crossvent.fabricate(document.body, 'sugar', { onTop: true });

function sugary (e) {
  console.log('synthetic sugar' + e.detail.onTop ? ' on top' : '');
}

License

MIT