From 27579f36f672181f0927e4f8bb1c4fd04345c28b Mon Sep 17 00:00:00 2001
From: Vincent Petry <pvince81@owncloud.com>
Date: Mon, 7 Oct 2013 13:11:34 +0200
Subject: [PATCH] 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.
---
 core/js/share.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/core/js/share.js b/core/js/share.js
index 8d14520cd7..bbdc5a67e9 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() {
-- 
GitLab