From 5db74af7934009d5b032d822e4eb360f716a735e Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Mon, 14 Dec 2009 10:38:19 +0000 Subject: [PATCH] - Patch #601150 by seutje: fixed behavior with contextual link drop-down. --- modules/contextual/contextual.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/contextual/contextual.js b/modules/contextual/contextual.js index e5377f578649..164dfdcd0841 100644 --- a/modules/contextual/contextual.js +++ b/modules/contextual/contextual.js @@ -14,7 +14,7 @@ Drupal.behaviors.contextualLinks = { var $links = $wrapper.find('ul.contextual-links'); var $trigger = $('<a class="contextual-links-trigger" href="#" />').text(Drupal.t('Configure')).click( function () { - $wrapper.find('ul.contextual-links').slideToggle(100); + $wrapper.find('ul.contextual-links').stop(true, true).slideToggle(100); $wrapper.toggleClass('contextual-links-active'); return false; } -- GitLab