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 /ui/core.js | |
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 'ui/core.js')
-rw-r--r-- | ui/core.js | 75 |
1 files changed, 21 insertions, 54 deletions
diff --git a/ui/core.js b/ui/core.js index b77338720..8737993d9 100644 --- a/ui/core.js +++ b/ui/core.js @@ -12,58 +12,25 @@ //>>group: UI Core //>>description: The core of jQuery UI, required for all interactions and widgets. //>>docs: http://api.jqueryui.com/category/ui-core/ -//>>demos: http://jqueryui.com/ -( function( factory ) { - if ( typeof define === "function" && define.amd ) { - - // AMD. Register as an anonymous module. - define( [ - "jquery", - "./data", - "./disable-selection", - "./focusable", - "./form", - "./ie", - "./keycode", - "./labels", - "./jquery-1-7", - "./plugin", - "./safe-active-element", - "./safe-blur", - "./tabbable", - "./scroll-parent", - "./version" - ], factory ); - } else { - - // Browser globals - factory( jQuery ); - } -}( function( $ ) { - -// plugins -$.fn.extend( { - - uniqueId: ( function() { - var uuid = 0; - - return function() { - return this.each( function() { - if ( !this.id ) { - this.id = "ui-id-" + ( ++uuid ); - } - } ); - }; - } )(), - - removeUniqueId: function() { - return this.each( function() { - if ( /^ui-id-\d+$/.test( this.id ) ) { - $( this ).removeAttr( "id" ); - } - } ); - } -} ); - -} ) ); +// This file is deprecated in 1.12.0 to be removed in 1.13 +( function() { +define( [ + "jquery", + "./data", + "./disable-selection", + "./focusable", + "./form", + "./ie", + "./keycode", + "./labels", + "./jquery-1-7", + "./plugin", + "./safe-active-element", + "./safe-blur", + "./scroll-parent", + "./tabbable", + "./unique-id", + "./version" +] ); +} )(); |