From 7f258dc7778b7e4683f5e0feed848d302d9f19b2 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Thu, 15 Sep 2016 14:45:58 +0200 Subject: [PATCH] Fixed icon sizes in attachment tab --- com.woltlab.wcf/templates/messageFormAttachments.tpl | 2 +- wcfsetup/install/files/js/WCF.Attachment.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/com.woltlab.wcf/templates/messageFormAttachments.tpl b/com.woltlab.wcf/templates/messageFormAttachments.tpl index 7fa1737662..182f16faa5 100644 --- a/com.woltlab.wcf/templates/messageFormAttachments.tpl +++ b/com.woltlab.wcf/templates/messageFormAttachments.tpl @@ -5,7 +5,7 @@ {if $attachment->tinyThumbnailType} {else} - + {/if}
diff --git a/wcfsetup/install/files/js/WCF.Attachment.js b/wcfsetup/install/files/js/WCF.Attachment.js index 63f14bc21c..dd08d2265c 100644 --- a/wcfsetup/install/files/js/WCF.Attachment.js +++ b/wcfsetup/install/files/js/WCF.Attachment.js @@ -298,7 +298,7 @@ WCF.Attachment.Upload = WCF.Upload.extend({ * @see WCF.Upload._initFile() */ _initFile: function(file) { - var $li = $('
  • '+file.name+'

    • ').data('filename', file.name); + var $li = $('
    • '+file.name+'

      • ').data('filename', file.name); this._fileListSelector.append($li); this._fileListSelector.show(); -- 2.20.1