0.0.4 • Published 12 years ago
event-debugger v0.0.4
event-debugger
step through events! must be initialized at the top of your scripts.

Installation
$ component install matthewmueller/event-debuggerExample
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