mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
Remove inadvertant usage of Object.assign
In order to retain compatibiltiy with IE11 See this discussion: https://groups.google.com/d/topic/tiddlywiki/RjA7_mee5oc/discussion
This commit is contained in:
parent
f98b4d5956
commit
7368cc74e1
@ -1154,7 +1154,7 @@ exports.readFiles = function(files,options) {
|
||||
}
|
||||
};
|
||||
for(var f=0; f<files.length; f++) {
|
||||
this.readFile(files[f],Object.assign({},options,{callback: readFileCallback}));
|
||||
this.readFile(files[f],$tw.utils.extend({},options,{callback: readFileCallback}));
|
||||
}
|
||||
return files.length;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user