From 8767c2b3bea95cb6020496536c124891be32243e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 15 Sep 2015 15:40:42 +0200 Subject: fix small mimetype icons --- apps/files/js/mainfileinfodetailview.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/files/js') diff --git a/apps/files/js/mainfileinfodetailview.js b/apps/files/js/mainfileinfodetailview.js index eb33ae0993f..830f074f3f1 100644 --- a/apps/files/js/mainfileinfodetailview.js +++ b/apps/files/js/mainfileinfodetailview.js @@ -124,9 +124,9 @@ // TODO: we really need OC.Previews var $iconDiv = this.$el.find('.thumbnail'); - $iconDiv.addClass('icon-loading icon-32'); var $container = this.$el.find('.thumbnailContainer'); if (!this.model.isDirectory()) { + $iconDiv.addClass('icon-loading icon-32'); this.loadPreview(this.model.getFullPath(), this.model.get('mimetype'), this.model.get('etag'), $iconDiv, $container, this.model.isImage()); } else { // TODO: special icons / shared / external @@ -173,7 +173,7 @@ if (!img) { return; } - $iconDiv.removeClass('icon-loading icon-32'); + $iconDiv.removeClass('icon-loading icon-32'); var targetHeight = getTargetHeight(img); if (this.model.isImage() && targetHeight > smallPreviewSize) { if (!isLandscape(img)) { @@ -190,7 +190,7 @@ }); }.bind(this), error: function () { - $iconDiv.removeClass('icon-loading'); + $iconDiv.removeClass('icon-loading icon-32'); this.$el.find('.thumbnailContainer').removeClass('image'); //fall back to regular view $iconDiv.css({ 'background-image': 'url("' + $iconDiv.previewImg + '")' -- cgit v1.2.3