Fix null reference in IE

This commit is contained in:
Morris Jobke 2016-08-17 16:04:53 +02:00
parent 6f48494b08
commit b3cc9c6998
No known key found for this signature in database
GPG Key ID: 9CE5ED29E7FCD38A
1 changed files with 6 additions and 6 deletions

View File

@ -196,13 +196,13 @@ OC.Settings.Apps = OC.Settings.Apps || {
if (app.preview && !OC.Util.isIE()) {
var currentImage = new Image();
currentImage.src = app.preview;
}
currentImage.onload = function() {
page.find('.app-image')
.append(OC.Settings.Apps.imageUrl(app.preview, app.detailpage))
.fadeIn();
};
currentImage.onload = function() {
page.find('.app-image')
.append(OC.Settings.Apps.imageUrl(app.preview, app.detailpage))
.fadeIn();
};
}
// set group select properly
if(OC.Settings.Apps.isType(app, 'filesystem') || OC.Settings.Apps.isType(app, 'prelogin') ||