diff --git a/core/modules/contextual/contextual.js b/core/modules/contextual/contextual.js index dee63e6d145c5fd180ca61610298ffba410705ac..fae84889d15e9db6a5e8b9b87704e72774cfbce2 100644 --- a/core/modules/contextual/contextual.js +++ b/core/modules/contextual/contextual.js @@ -61,6 +61,7 @@ Drupal.contextual.prototype.init = function() { .on('mouseenter.contextual', {highlight: true}, highlightRegion) .on('mouseleave.contextual', {highlight: false}, highlightRegion) .on('mouseleave.contextual', '.contextual', {show: false}, $.proxy(this.triggerLeaveHandler, this)) + .on('click.contextual', '.contextual-links a', {highlight: false}, highlightRegion) .on('focus.contextual', '.contextual-links a, .contextual .trigger', {highlight: true}, highlightRegion) .on('blur.contextual', '.contextual-links a, .contextual .trigger', {highlight: false}, highlightRegion); };