mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
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:
parent
6b9544b22f
commit
d53ea50620
2
thirdparty/multifile/multifile.js
vendored
2
thirdparty/multifile/multifile.js
vendored
@ -55,7 +55,7 @@ ObservableObject.prototype = {
|
|||||||
},
|
},
|
||||||
fire : function(evt, data, scope) {
|
fire : function(evt, data, scope) {
|
||||||
scope = scope || window
|
scope = scope || window
|
||||||
this.functions.forEach(function(el) {
|
jQuery(this.functions).each(function(el) {
|
||||||
if (el[0] == evt) el[1].call(scope, data);
|
if (el[0] == evt) el[1].call(scope, data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user