summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/js
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-10-28 20:24:06 +0100
committerVincent Petry <pvince81@owncloud.com>2013-10-28 20:24:06 +0100
commite41ea20ce4e2a572e3cda3a8ab74825cab58ebb1 (patch)
tree2b28a19f82ef0261ade3312f045fc685d10b1a04 /apps/files_trashbin/js
parent4750fbc22655b27120136a0dfdc601fb37307bf5 (diff)
downloadnextcloud-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/js')
-rw-r--r--apps/files_trashbin/js/trash.js5
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')));
-}