Use Object.each for object looping

This commit is contained in:
Ruud
2013-11-30 11:52:41 +01:00
parent fdcddaaffc
commit 029ae20573

View File

@@ -78,9 +78,9 @@ var Movie = new Class({
self.list.checkIfEmpty();
// Remove events
self.global_events.each(function(handle, listener){
Object.each(self.global_events, function(handle, listener){
App.off(listener, handle);
})
});
},
busy: function(set_busy, timeout){