diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/overlay/overlay-child.js | 2 | ||||
-rw-r--r-- | modules/overlay/overlay-parent.js | 2 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/overlay/overlay-child.js b/modules/overlay/overlay-child.js index 1445b32b7..018445517 100644 --- a/modules/overlay/overlay-child.js +++ b/modules/overlay/overlay-child.js @@ -23,7 +23,7 @@ Drupal.behaviors.overlayChild = { // If we cannot reach the parent window, then we have nothing else to do // here. - if (!$.isObject(parent.Drupal) || !$.isObject(parent.Drupal.overlay)) { + if (!$.isPlainObject(parent.Drupal) || !$.isPlainObject(parent.Drupal.overlay)) { return; } diff --git a/modules/overlay/overlay-parent.js b/modules/overlay/overlay-parent.js index 78efe9088..dd064faa3 100644 --- a/modules/overlay/overlay-parent.js +++ b/modules/overlay/overlay-parent.js @@ -598,7 +598,7 @@ Drupal.overlay.innerResize = function (height) { } // When no height is given try to get height when iframe content is loaded. - if (!height && $.isObject(self.$iframeBody)) { + if (!height && self.$iframeBody) { height = self.$iframeBody.outerHeight() + 25; } diff --git a/modules/system/system.module b/modules/system/system.module index 40bad7573..7d359303f 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1046,7 +1046,7 @@ function system_library() { $libraries['jquery'] = array( 'title' => 'jQuery', 'website' => 'http://jquery.com', - 'version' => '1.3.2', + 'version' => '1.4.2', 'js' => array( 'misc/jquery.js' => array('weight' => JS_LIBRARY - 20), ), |