Use eval instead of $.script

Fixes https://github.com/nextcloud/server/issues/4067

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
Lukas Reschke 2017-03-26 14:11:58 +02:00
parent ec6853a2a6
commit 12a019d328
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
1 changed files with 23 additions and 8 deletions

View File

@ -368,9 +368,24 @@ var OCP = {},
var deferred, path=OC.filePath(app,'js',script+'.js');
if(!OC.addScript.loaded[path]) {
if(ready) {
deferred=$.getScript(path,ready);
deferred = jQuery.ajax({
url: path,
cache: true,
success: function (content) {
eval(content);
eval(ready);
},
async: false
});
} else {
deferred=$.getScript(path);
deferred = jQuery.ajax({
url: path,
cache: true,
success: function (content) {
eval(content);
},
async: false
});
}
OC.addScript.loaded[path] = deferred;
} else {