mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
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.
This commit is contained in:
parent
46fdb449a4
commit
27579f36f6
1 changed files with 2 additions and 0 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue