1.0.4 • Published 8 years ago

@f/dom-events v1.0.4

Weekly downloads
15
License
MIT
Repository
github
Last release
8 years ago

dom-events

Git tag NPM version Code style

A list of all DOM events (probably not totally complete, but feel free to send a PR if one you want isn't included), exported as an array.

Installation

$ npm install @f/dom-events

Usage

var domEvents = require('@f/dom-events')

function delegate (root) {
  domEvents.forEach(function (name) {
    root.addEventListener(name, function () {
      // delegate the event
    })
  })
}

License

MIT