diff options
Diffstat (limited to 'src/deprecated.js')
-rw-r--r-- | src/deprecated.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/deprecated.js b/src/deprecated.js index 9589ec872..3ae78aac8 100644 --- a/src/deprecated.js +++ b/src/deprecated.js @@ -1,7 +1,8 @@ define( [ "./core", - "./core/nodeName" -], function( jQuery, nodeName ) { + "./core/nodeName", + "./var/isWindow" +], function( jQuery, nodeName, isWindow ) { "use strict"; @@ -36,5 +37,6 @@ jQuery.holdReady = function( hold ) { jQuery.isArray = Array.isArray; jQuery.parseJSON = JSON.parse; jQuery.nodeName = nodeName; +jQuery.isWindow = isWindow; } ); |