]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fixed clicking on the "Home" breadcrumb in the trash app
authorVincent Petry <pvince81@owncloud.com>
Mon, 28 Oct 2013 19:24:06 +0000 (20:24 +0100)
committerVincent Petry <pvince81@owncloud.com>
Mon, 28 Oct 2013 19:24:06 +0000 (20:24 +0100)
Clicking on the "home" breadcrumb now correctly brings the user back to
the files app.

apps/files_trashbin/js/trash.js

index 4e83afcdb06f3b67eac9c05707bc685ef83e8e45..4e6a1e93fa40c969d3d68569d0a68d674b80c98f 100644 (file)
@@ -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')));
-}