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
12
thirdparty/multifile/multifile.js
vendored
12
thirdparty/multifile/multifile.js
vendored
@ -53,12 +53,12 @@ ObservableObject.prototype = {
|
|||||||
unsubscribe : function(evt, fn) {
|
unsubscribe : function(evt, fn) {
|
||||||
this.functions = this.fns.filter(function(el) {if (el !== [evt, fn]) return el;});
|
this.functions = this.fns.filter(function(el) {if (el !== [evt, fn]) return el;});
|
||||||
},
|
},
|
||||||
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);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var MultiSelectorObserver = new ObservableObject();
|
var MultiSelectorObserver = new ObservableObject();
|
||||||
|
Loading…
Reference in New Issue
Block a user