From: Vincent Petry Date: Mon, 7 Oct 2013 11:11:34 +0000 (+0200) Subject: Prevent scroll up when click on links in sharing dropdown X-Git-Tag: v6.0.0alpha2~73^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=27579f36f672181f0927e4f8bb1c4fd04345c28b;p=nextcloud-server.git Prevent scroll up when click on links in sharing dropdown When clicking on a link that points to "#" in the sharing dropdown, and the current view is scrolled down, the browser will scroll the page up to the top (anchor behavior). This fix cancels the click event when clicking on "unshare" link or "show crud" link. --- diff --git a/core/js/share.js b/core/js/share.js index 8d14520cd74..bbdc5a67e9d 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -502,6 +502,7 @@ $(document).ready(function() { $(document).on('click', '#dropdown .showCruds', function() { $(this).parent().find('.cruds').toggle(); + return false; }); $(document).on('click', '#dropdown .unshare', function() { @@ -519,6 +520,7 @@ $(document).ready(function() { $('#expiration').hide(); } }); + return false; }); $(document).on('change', '#dropdown .permissions', function() {