Merge pull request #5587 from owncloud/trashbin-homecrumb

Fixed clicking on the "Home" breadcrumb in the trash app
This commit is contained in:
Julian Müller 2013-10-28 14:18:50 -07:00
commit 6716c9f00a

View 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')));
}