Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gator.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
// if we have specified an event type, selector, and callback then we
// need to make sure there are callbacks tied to this selector to
// begin with. if there aren't then we can stop here
if (!_handlers[gator.id][event][selector]) {
if (!_handlers[gator.id][event] || !_handlers[gator.id][event][selector]) {
return;
}

Expand Down