diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-28 20:24:06 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-28 20:24:06 +0100 |
commit | e41ea20ce4e2a572e3cda3a8ab74825cab58ebb1 (patch) | |
tree | 2b28a19f82ef0261ade3312f045fc685d10b1a04 /apps/files_trashbin | |
parent | 4750fbc22655b27120136a0dfdc601fb37307bf5 (diff) | |
download | nextcloud-server-e41ea20ce4e2a572e3cda3a8ab74825cab58ebb1.tar.gz nextcloud-server-e41ea20ce4e2a572e3cda3a8ab74825cab58ebb1.zip |
Fixed clicking on the "Home" breadcrumb in the trash app
Clicking on the "home" breadcrumb now correctly brings the user back to
the files app.
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/js/trash.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 4e83afcdb06..4e6a1e93fa4 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -228,9 +228,4 @@ function disableActions() { $(".action").css("display", "none"); $(":input:checkbox").css("display", "none"); } -function onClickBreadcrumb(e){ - var $el = $(e.target).closest('.crumb'); - e.preventDefault(); - FileList.changeDirectory(decodeURIComponent($el.data('dir'))); -} |