mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Core: adjust data tests to ensure proper camelCasing
- Add back camelCase to the public object (deprecate not remove) Ref #3384
This commit is contained in:
@@ -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;
|
||||
|
||||
} );
|
||||
|
||||
Reference in New Issue
Block a user