diff --git a/static/scripts/galaxy.ui.scrollPanel.js b/static/scripts/galaxy.ui.scrollPanel.js index d4834cb88db..3dc96404105 100644 --- a/static/scripts/galaxy.ui.scrollPanel.js +++ b/static/scripts/galaxy.ui.scrollPanel.js @@ -80,5 +80,9 @@ $.ui.plugin.add("draggable", "scrollPanel", { instance.old_e = e; instance.timeout = setTimeout( function() { instance.mouseMove( e ) }, 50 ); } - } + }, + stop: function( e, ui ) { + var instance = $(this).data("draggable"); + clearTimeout( instance.timeout ); + } }); \ No newline at end of file