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

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@111640 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-10-04 06:07:20 +00:00
parent 6b9544b22f
commit d53ea50620

View File

@ -55,7 +55,7 @@ ObservableObject.prototype = {
},
fire : function(evt, data, scope) {
scope = scope || window
this.functions.forEach(function(el) {
jQuery(this.functions).each(function(el) {
if (el[0] == evt) el[1].call(scope, data);
});
}