diff options
author | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-09-24 14:12:54 +0200 |
---|---|---|
committer | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-09-25 00:51:39 +0200 |
commit | 28d3c1cc0b03d02dd3be5516c1c59ac6842fc904 (patch) | |
tree | 840e7f59cb46c84062187e69254b73b91f352fe5 /apps/files/js | |
parent | ec005fc5d0185d81a17646c5b131ed918ffd515c (diff) | |
download | nextcloud-server-28d3c1cc0b03d02dd3be5516c1c59ac6842fc904.tar.gz nextcloud-server-28d3c1cc0b03d02dd3be5516c1c59ac6842fc904.zip |
fix filelist checkboxes
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 4b1b38d783c..ad3dce19778 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -925,7 +925,7 @@ if (this._allowSelection) { td.append( '<input id="select-' + this.id + '-' + fileData.id + - '" type="checkbox" class="selectCheckBox"/><label for="select-' + this.id + '-' + fileData.id + '">' + + '" type="checkbox" class="selectCheckBox checkbox"/><label for="select-' + this.id + '-' + fileData.id + '">' + '<div class="thumbnail" style="background-image:url(' + icon + '); background-size: 32px;"></div>' + '<span class="hidden-visually">' + t('files', 'Select') + '</span>' + '</label>' |