mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-06-23 00:44:06 +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++) {
|
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;
|
return files.length;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user