diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-12-17 00:25:06 -0800 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-12-17 00:25:06 -0800 |
commit | 753525c57f2fb0fce6d03e29aae36e138221983a (patch) | |
tree | 7c5ac5d2d6a86c265a94e3d2856953719b773961 /core | |
parent | 4ae148cebdbbab6291a77b62a0ecba2c6b92ae13 (diff) | |
parent | 3e17fbe30dbf2a0e99c7aca83d855fb8df46d11b (diff) | |
download | nextcloud-server-753525c57f2fb0fce6d03e29aae36e138221983a.tar.gz nextcloud-server-753525c57f2fb0fce6d03e29aae36e138221983a.zip |
Merge pull request #6386 from owncloud/trash_always_show_deleted_files_breadcrumb
always show 'Deleted Files' breadcrumb
Diffstat (limited to 'core')
-rw-r--r-- | core/js/js.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/js/js.js b/core/js/js.js index 5442039c294..54b4d51a707 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -478,11 +478,11 @@ OC.Breadcrumb={ }, _show:function(container, dir, leafname, leaflink){ var self = this; - + this._clear(container); - + // show home + path in subdirectories - if (dir && dir !== '/') { + if (dir) { //add home var link = OC.linkTo('files','index.php'); @@ -509,7 +509,7 @@ OC.Breadcrumb={ } }); } - + //add leafname if (leafname && leaflink) { this._push(container, leafname, leaflink); |