diff options
Diffstat (limited to 'modules/overlay/overlay-parent.js')
-rw-r--r-- | modules/overlay/overlay-parent.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/overlay/overlay-parent.js b/modules/overlay/overlay-parent.js index 4f25e2bdd..88dd43aa1 100644 --- a/modules/overlay/overlay-parent.js +++ b/modules/overlay/overlay-parent.js @@ -19,8 +19,8 @@ Drupal.behaviors.overlayParent = { // Simulate the native click event for all links that appear outside the // overlay. jQuery UI Dialog prevents all clicks outside a modal dialog. - $('.overlay-displace-top a', context) - .add('.overlay-displace-bottom a', context) + $('.overlay-displace-top a:not(.overlay-displace-no-click)', context) + .add('.overlay-displace-bottom a:not(.overlay-displace-no-click)', context) .click(function () { window.location.href = this.href; }); |