diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-12-15 15:18:29 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-12-15 15:18:29 +0100 |
commit | 33eb4483b297d12b7cb76e5a3df25f2d641a96cb (patch) | |
tree | 93d80be2752c3eccee60f2160821bd69bd5e4375 /apps/files/js | |
parent | fb220a1e09fdc8a6a932567eaaba4639aa150e2e (diff) | |
download | nextcloud-server-33eb4483b297d12b7cb76e5a3df25f2d641a96cb.tar.gz nextcloud-server-33eb4483b297d12b7cb76e5a3df25f2d641a96cb.zip |
Fixed has-favorites CSS
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/tagsplugin.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/tagsplugin.js b/apps/files/js/tagsplugin.js index cfde8bc6304..b7bbb6daf54 100644 --- a/apps/files/js/tagsplugin.js +++ b/apps/files/js/tagsplugin.js @@ -116,7 +116,7 @@ _extendFileList: function(fileList) { // extend row prototype - fileList.$fileList.addClass('has-favorites'); + fileList.$el.addClass('has-favorites'); var oldCreateRow = fileList._createRow; fileList._createRow = function(fileData) { var $tr = oldCreateRow.apply(this, arguments); |