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