event-debugger

step through events! must be initialized at the top of your scripts.

Downloads
8
Stars
16

event-debugger

step through events! must be initialized at the top of your scripts.

Installation

$ component install matthewmueller/event-debugger

Example

var ed = require('event-debugger');
ed('click');

$('li').click(function() {
  console.log('li');
});

$('body').click(function() {
  console.log('body');
});

API

EventDebugger(type)

Initialize the event debugger with a given type. type supports both strings and regex.

ed(/^(mouseover|mousedown)$/)

License

MIT

Package Rankings
Top 18.4% on Npmjs.org