diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-07-15 20:30:36 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-08 00:29:37 -0400 |
commit | 37602d7e645964e4f5e4d06ef313081c8eb60bf1 (patch) | |
tree | ae6d72b9202b5d1426a13e26c5b9b53b82c48ee5 /tests/unit/core | |
parent | 72bfafbedea4973b803abeefc97637f246b11c89 (diff) | |
download | jquery-ui-37602d7e645964e4f5e4d06ef313081c8eb60bf1.tar.gz jquery-ui-37602d7e645964e4f5e4d06ef313081c8eb60bf1.zip |
Core: Movie uniqueId into its own module and deprecate core module
uniqueId was the last thing in the core module, and it is now just a helper
which require all the modules it used to contain.
Closes #9647
Diffstat (limited to 'tests/unit/core')
-rw-r--r-- | tests/unit/core/core.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js index 1eaa055e5..d1b65403e 100644 --- a/tests/unit/core/core.js +++ b/tests/unit/core/core.js @@ -1,9 +1,9 @@ define( [ "jquery", "lib/common", - "ui/core", "ui/form", - "ui/labels" + "ui/labels", + "ui/unique-id" ], function( $, common ) { module( "core - jQuery extensions" ); |