aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/jquery.ui.popup.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/jquery.ui.popup.js b/ui/jquery.ui.popup.js
index 784e5c655..10361a35c 100644
--- a/ui/jquery.ui.popup.js
+++ b/ui/jquery.ui.popup.js
@@ -60,6 +60,8 @@ $.widget( "ui.popup", {
// translate keydown to click
// opens popup and let's tooltip hide itself
if ( event.keyCode == $.ui.keyCode.DOWN ) {
+ // prevent scrolling
+ event.preventDefault();
this.options.trigger.trigger( "click", event );
}
},