Skip to content

Commit

Permalink
Dumb fix blurg
Browse files Browse the repository at this point in the history
  • Loading branch information
Fil Maj committed Nov 1, 2011
1 parent 09c6cf1 commit d77e7ce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ie/event.js
Expand Up @@ -87,7 +87,9 @@ xui.extend({
el.fireEvent("on" + type, event);
else {
var responders = _getRespondersForEvent(_getEventID(el), type);
responder.call(el);
responders.forEach(function(r) {
r.call(el);
});
}
});
}
Expand Down

0 comments on commit d77e7ce

Please sign in to comment.