Issue #1749782 follow-up by tim.plunkett: Fix contextual links.

8.0.x
webchick 2012-09-06 15:25:25 -07:00
parent 21ba0bbdd2
commit 16e21dacd8
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ Drupal.behaviors.contextualLinks = {
var $trigger = $('<a class="trigger" href="#" />').text(Drupal.t('Configure')).click(
function (e) {
e.preventDefault();
e.stopPropagation();
$links.stop(true, true).slideToggle(100);
$wrapper.toggleClass('contextual-active');
}