replacing old .each mootools' method by _.each
This commit is contained in:
@@ -57,7 +57,7 @@ mindplot.ScreenManager = new Class({
|
||||
|
||||
fireEvent : function(type, event) {
|
||||
if (type == 'click') {
|
||||
this._clickEvents.each(function(listener) {
|
||||
_.each(this._clickEvents, function(listener) {
|
||||
listener(type, event);
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user