summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2017-11-27 16:46:11 +0100
committerGitHub <noreply@github.com>2017-11-27 16:46:11 +0100
commitf700cd14fa4f094b7822edcf2e1a74b7f44ae32b (patch)
treedf62e15e70eee968b6863b441ffa08efdd22636e /apps/files
parent4a63727ed989818eaca85dea113e8e0b075b1c07 (diff)
parent134192d76cf27bee9549710a1eac40db3ef1edf1 (diff)
downloadnextcloud-server-f700cd14fa4f094b7822edcf2e1a74b7f44ae32b.tar.gz
nextcloud-server-f700cd14fa4f094b7822edcf2e1a74b7f44ae32b.zip
Merge pull request #7222 from nextcloud/fix-filerow-avatars
Fix filerow avatars
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/filelist.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 6996e423776..10efa54496a 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -553,9 +553,6 @@
actionsWidth += $(action).outerWidth();
});
- // subtract app navigation toggle when visible
- containerWidth -= $('#app-navigation-toggle').width();
-
this.breadcrumb._resize();
this.$table.find('>thead').width($('#app-content').width() - OC.Util.getScrollBarWidth());
@@ -1369,7 +1366,7 @@
* @return new tr element (not appended to the table)
*/
add: function(fileData, options) {
- var index = -1;
+ var index;
var $tr;
var $rows;
var $insertionPoint;