From 9460e6ca370c36651c2a0eccb888fbcd4c2552b6 Mon Sep 17 00:00:00 2001 From: Richard Flosi Date: Tue, 11 Mar 2014 13:47:34 -0700 Subject: [PATCH] Updating to export jQuery object, currently require('jqueryify') yields undefined. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 8273015..165692d 100644 --- a/index.js +++ b/index.js @@ -9099,7 +9099,7 @@ jQuery.noConflict = function( deep ) { // Expose jQuery and $ identifiers, even in // AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557) // and CommonJS for browser emulators (#13566) -if ( typeof noGlobal === strundefined ) { +if ( typeof noGlobal !== strundefined ) { window.jQuery = window.$ = jQuery; }