aboutsummaryrefslogtreecommitdiffstats
path: root/src/deprecated.js
diff options
context:
space:
mode:
authorTimmy Willison <4timmywil@gmail.com>2017-12-04 16:38:37 -0500
committerTimmy Willison <4timmywil@gmail.com>2018-01-08 11:21:22 -0500
commit775caebd617e91e697b3e41ae33d6877e63785aa (patch)
tree8c67bba8c3466c3167b8457bbc9b9f13beb96c91 /src/deprecated.js
parent64a289286a743516bce82462200062a647ef3ac0 (diff)
downloadjquery-775caebd617e91e697b3e41ae33d6877e63785aa.tar.gz
jquery-775caebd617e91e697b3e41ae33d6877e63785aa.zip
Core: adjust data tests to ensure proper camelCasing
- Add back camelCase to the public object (deprecate not remove) Ref #3384
Diffstat (limited to 'src/deprecated.js')
-rw-r--r--src/deprecated.js4
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;
} );