diff --git a/core/misc/drupal.js b/core/misc/drupal.js index b2b01641c231f362a0914532bf8ae6cf65b03a74..8da29fd8d41e9f3d0b2ec60e8147b359ad1451b4 100644 --- a/core/misc/drupal.js +++ b/core/misc/drupal.js @@ -112,6 +112,15 @@ Drupal.detachBehaviors = function (context, settings, trigger) { } }; +/** + * Helper to test document width for mobile configurations. + * @todo Temporary solution for the mobile initiative. + */ +Drupal.checkWidthBreakpoint = function (width) { + width = width || Drupal.settings.widthBreakpoint || 640; + return (document.documentElement.clientWidth > width); +}; + /** * Encode special characters in a plain-text string for display as HTML. * diff --git a/core/modules/overlay/overlay-parent.js b/core/modules/overlay/overlay-parent.js index 48a206bafedb31fffd60ac03f1f71867091e89b2..9c0b527f6097e115665a8b143d5c828ec36e2e4c 100644 --- a/core/modules/overlay/overlay-parent.js +++ b/core/modules/overlay/overlay-parent.js @@ -23,6 +23,12 @@ Drupal.behaviors.overlayParent = { // permalinks open the overlay. .triggerHandler('hashchange.drupal-overlay'); + // Do not use the overlay on devices with low screen width. + // @todo Replace with conditional loading. + if(!Drupal.checkWidthBreakpoint()) { + return; + } + $(document) // Instead of binding a click event handler to every link we bind one to // the document and only handle events that bubble up. This allows other