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 <waldron.rick@gmail.com>
This commit is contained in:
Rick Waldron 2013-04-04 17:27:15 -04:00
parent 37c801eda5
commit 6358da8aa3

View File

@ -17,7 +17,8 @@ if ( typeof module === "object" && typeof module.exports === "object" ) {
} }
} }
// If there is a window object, define a jQuery and $ // If there is a window object, that at least has a document property,
if ( typeof window === "object" ) { // define jQuery and $ identifiers
if ( typeof window === "object" && typeof window.document === "object" ) {
window.jQuery = window.$ = jQuery; window.jQuery = window.$ = jQuery;
} }