Browse Source

Fix null reference in IE

pull/905/head
Morris Jobke 10 years ago
parent
commit
28c192c9f5
No known key found for this signature in database GPG Key ID: 9CE5ED29E7FCD38A
  1. 12
      settings/js/apps.js

12
settings/js/apps.js

@ -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') ||

Loading…
Cancel
Save