MINOR Fixed multifile.js non-standard forEach() reference, using jQuery.each() instead

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@101135 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-03-16 04:15:05 +00:00 committed by Sam Minnee
parent e3dd9c9af3
commit f8ff13ad9e
1 changed files with 6 additions and 6 deletions

View File

@ -53,12 +53,12 @@ ObservableObject.prototype = {
unsubscribe : function(evt, fn) {
this.functions = this.fns.filter(function(el) {if (el !== [evt, fn]) return el;});
},
fire : function(evt, data, scope) {
scope = scope || window
this.functions.forEach(function(el) {
if (el[0] == evt) el[1].call(scope, data);
});
}
fire : function(evt, data, scope) {
scope = scope || window
jQuery(this.functions).each(function(el) {
if (el[0] == evt) el[1].call(scope, data);
});
}
};
var MultiSelectorObserver = new ObservableObject();