From 6358da8aa32e7ed52da3af1a912bdd1a05863faf Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Thu, 4 Apr 2013 17:27:15 -0400 Subject: [PATCH] Fixes #13566. If there is a window object, and it has a document property, it might be the window we want, so define jQuery and $. Thanks to @dcherman for saving us from that embarrassment! Signed-off-by: Rick Waldron --- src/exports.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/exports.js b/src/exports.js index db554347d..37b797075 100644 --- a/src/exports.js +++ b/src/exports.js @@ -17,7 +17,8 @@ if ( typeof module === "object" && typeof module.exports === "object" ) { } } -// If there is a window object, define a jQuery and $ -if ( typeof window === "object" ) { +// If there is a window object, that at least has a document property, +// define jQuery and $ identifiers +if ( typeof window === "object" && typeof window.document === "object" ) { window.jQuery = window.$ = jQuery; } -- 2.39.5