aboutsummaryrefslogtreecommitdiffstats
path: root/src/deprecated.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/deprecated.js')
-rw-r--r--src/deprecated.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/deprecated.js b/src/deprecated.js
index c11b0d332..e24de4818 100644
--- a/src/deprecated.js
+++ b/src/deprecated.js
@@ -1,14 +1,14 @@
define( [
"./core",
"./core/nodeName",
- "./core/camelCase",
"./core/toType",
+ "./css/cssCamelCase",
"./var/isFunction",
"./var/isWindow",
"./var/slice",
"./event/alias"
-], function( jQuery, nodeName, camelCase, toType, isFunction, isWindow, slice ) {
+], function( jQuery, nodeName, toType, cssCamelCase, isFunction, isWindow, slice ) {
"use strict";
@@ -76,7 +76,7 @@ jQuery.parseJSON = JSON.parse;
jQuery.nodeName = nodeName;
jQuery.isFunction = isFunction;
jQuery.isWindow = isWindow;
-jQuery.camelCase = camelCase;
+jQuery.camelCase = cssCamelCase;
jQuery.type = toType;
jQuery.now = Date.now;