aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2014-10-30 15:55:08 -0400
committerScott González <scott.gonzalez@gmail.com>2014-11-10 13:19:03 -0500
commitb5f1ffdea4c3c4b41936e56d4cb23ca8acb2aaa8 (patch)
tree549f0cfc1e6996e9f88feca44df29a937ff9287c /ui
parent347b2a5ecd02933c191a13596a5849960f8f4ad2 (diff)
downloadjquery-ui-b5f1ffdea4c3c4b41936e56d4cb23ca8acb2aaa8.tar.gz
jquery-ui-b5f1ffdea4c3c4b41936e56d4cb23ca8acb2aaa8.zip
Build: Remove manifest files; move metadata to source files
Closes gh-1379
Diffstat (limited to 'ui')
-rw-r--r--ui/accordion.js9
-rw-r--r--ui/autocomplete.js9
-rw-r--r--ui/button.js9
-rw-r--r--ui/core.js8
-rw-r--r--ui/datepicker.js9
-rw-r--r--ui/dialog.js9
-rw-r--r--ui/draggable.js9
-rw-r--r--ui/droppable.js9
-rw-r--r--ui/effect-blind.js9
-rw-r--r--ui/effect-bounce.js9
-rw-r--r--ui/effect-clip.js9
-rw-r--r--ui/effect-drop.js9
-rw-r--r--ui/effect-explode.js9
-rw-r--r--ui/effect-fade.js9
-rw-r--r--ui/effect-fold.js9
-rw-r--r--ui/effect-highlight.js9
-rw-r--r--ui/effect-puff.js9
-rw-r--r--ui/effect-pulsate.js9
-rw-r--r--ui/effect-scale.js9
-rw-r--r--ui/effect-shake.js9
-rw-r--r--ui/effect-size.js9
-rw-r--r--ui/effect-slide.js9
-rw-r--r--ui/effect-transfer.js9
-rw-r--r--ui/effect.js9
-rw-r--r--ui/menu.js9
-rw-r--r--ui/mouse.js8
-rw-r--r--ui/position.js7
-rw-r--r--ui/progressbar.js9
-rw-r--r--ui/resizable.js9
-rw-r--r--ui/selectable.js9
-rw-r--r--ui/selectmenu.js9
-rw-r--r--ui/slider.js9
-rw-r--r--ui/sortable.js9
-rw-r--r--ui/spinner.js9
-rw-r--r--ui/tabs.js9
-rw-r--r--ui/tooltip.js9
-rw-r--r--ui/widget.js9
37 files changed, 258 insertions, 71 deletions
diff --git a/ui/accordion.js b/ui/accordion.js
index 946437197..1f41266d7 100644
--- a/ui/accordion.js
+++ b/ui/accordion.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/accordion/
*/
+
+//>>label: Accordion
+//>>group: Widgets
+//>>description: Displays collapsible content panels for presenting information in a limited amount of space.
+//>>docs: http://api.jqueryui.com/accordion/
+//>>demos: http://jqueryui.com/accordion/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/autocomplete.js b/ui/autocomplete.js
index aa0e54633..319433913 100644
--- a/ui/autocomplete.js
+++ b/ui/autocomplete.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/autocomplete/
*/
+
+//>>label: Autocomplete
+//>>group: Widgets
+//>>description: Lists suggested words as the user is typing.
+//>>docs: http://api.jqueryui.com/autocomplete/
+//>>demos: http://jqueryui.com/autocomplete/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/button.js b/ui/button.js
index 5d502ad51..3a7c24c6e 100644
--- a/ui/button.js
+++ b/ui/button.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/button/
*/
+
+//>>label: Button
+//>>group: Widgets
+//>>description: Enhances a form with themeable buttons.
+//>>docs: http://api.jqueryui.com/button/
+//>>demos: http://jqueryui.com/button/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/core.js b/ui/core.js
index 5e5f6d574..a6f7d6548 100644
--- a/ui/core.js
+++ b/ui/core.js
@@ -6,8 +6,14 @@
* Released under the MIT license.
* http://jquery.org/license
*
- * http://api.jqueryui.com/category/ui-core/
*/
+
+//>>label: Core
+//>>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 ) {
diff --git a/ui/datepicker.js b/ui/datepicker.js
index 34ffc578e..4614afd47 100644
--- a/ui/datepicker.js
+++ b/ui/datepicker.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/datepicker/
*/
+
+//>>label: Datepicker
+//>>group: Widgets
+//>>description: Displays a calendar from an input or inline for selecting dates.
+//>>docs: http://api.jqueryui.com/datepicker/
+//>>demos: http://jqueryui.com/datepicker/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/dialog.js b/ui/dialog.js
index 5561a96cd..fb50939dd 100644
--- a/ui/dialog.js
+++ b/ui/dialog.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/dialog/
*/
+
+//>>label: Dialog
+//>>group: Widgets
+//>>description: Displays customizable dialog windows.
+//>>docs: http://api.jqueryui.com/dialog/
+//>>demos: http://jqueryui.com/dialog/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/draggable.js b/ui/draggable.js
index 5be628dc8..e2bd4eb81 100644
--- a/ui/draggable.js
+++ b/ui/draggable.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/draggable/
*/
+
+//>>label: Draggable
+//>>group: Interactions
+//>>description: Enables dragging functionality for any element.
+//>>docs: http://api.jqueryui.com/draggable/
+//>>demos: http://jqueryui.com/draggable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/droppable.js b/ui/droppable.js
index c62af0941..5e39cf68d 100644
--- a/ui/droppable.js
+++ b/ui/droppable.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/droppable/
*/
+
+//>>label: Droppable
+//>>group: Interactions
+//>>description: Enables drop targets for draggable elements.
+//>>docs: http://api.jqueryui.com/droppable/
+//>>demos: http://jqueryui.com/droppable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-blind.js b/ui/effect-blind.js
index 0582b073a..ffdfa3735 100644
--- a/ui/effect-blind.js
+++ b/ui/effect-blind.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/blind-effect/
*/
+
+//>>label: Blind Effect
+//>>group: Effects
+//>>description: Blinds the element.
+//>>docs: http://api.jqueryui.com/blind-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-bounce.js b/ui/effect-bounce.js
index 250ef80bc..b2fa2c951 100644
--- a/ui/effect-bounce.js
+++ b/ui/effect-bounce.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/bounce-effect/
*/
+
+//>>label: Bounce Effect
+//>>group: Effects
+//>>description: Bounces an element horizontally or vertically n times.
+//>>docs: http://api.jqueryui.com/bounce-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-clip.js b/ui/effect-clip.js
index b53ff9b4e..6a07ad67d 100644
--- a/ui/effect-clip.js
+++ b/ui/effect-clip.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/clip-effect/
*/
+
+//>>label: Clip Effect
+//>>group: Effects
+//>>description: Clips the element on and off like an old TV.
+//>>docs: http://api.jqueryui.com/clip-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-drop.js b/ui/effect-drop.js
index ec1b8cefd..0b3f85557 100644
--- a/ui/effect-drop.js
+++ b/ui/effect-drop.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/drop-effect/
*/
+
+//>>label: Drop Effect
+//>>group: Effects
+//>>description: Moves an element in one direction and hides it at the same time.
+//>>docs: http://api.jqueryui.com/drop-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-explode.js b/ui/effect-explode.js
index f89f88427..547c6787a 100644
--- a/ui/effect-explode.js
+++ b/ui/effect-explode.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/explode-effect/
*/
+
+//>>label: Explode Effect
+//>>group: Effects
+//>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness.
+//>>docs: http://api.jqueryui.com/explode-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-fade.js b/ui/effect-fade.js
index 1cfdd2f29..3bde7d6b9 100644
--- a/ui/effect-fade.js
+++ b/ui/effect-fade.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/fade-effect/
*/
+
+//>>label: Fade Effect
+//>>group: Effects
+//>>description: Fades the element.
+//>>docs: http://api.jqueryui.com/fade-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-fold.js b/ui/effect-fold.js
index 9c35981e0..7776f3cc6 100644
--- a/ui/effect-fold.js
+++ b/ui/effect-fold.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/fold-effect/
*/
+
+//>>label: Fold Effect
+//>>group: Effects
+//>>description: Folds an element first horizontally and then vertically.
+//>>docs: http://api.jqueryui.com/fold-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-highlight.js b/ui/effect-highlight.js
index d6b30b1d4..e3ad3cbc4 100644
--- a/ui/effect-highlight.js
+++ b/ui/effect-highlight.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/highlight-effect/
*/
+
+//>>label: Highlight Effect
+//>>group: Effects
+//>>description: Highlights the background of an element in a defined color for a custom duration.
+//>>docs: http://api.jqueryui.com/highlight-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-puff.js b/ui/effect-puff.js
index 80d2c17e2..8ea6ded22 100644
--- a/ui/effect-puff.js
+++ b/ui/effect-puff.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/puff-effect/
*/
+
+//>>label: Puff Effect
+//>>group: Effects
+//>>description: Creates a puff effect by scaling the element up and hiding it at the same time.
+//>>docs: http://api.jqueryui.com/puff-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-pulsate.js b/ui/effect-pulsate.js
index 9c6e65e35..0e82761a3 100644
--- a/ui/effect-pulsate.js
+++ b/ui/effect-pulsate.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/pulsate-effect/
*/
+
+//>>label: Pulsate Effect
+//>>group: Effects
+//>>description: Pulsates an element n times by changing the opacity to zero and back.
+//>>docs: http://api.jqueryui.com/pulsate-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-scale.js b/ui/effect-scale.js
index f5a842c47..e2e1c0b50 100644
--- a/ui/effect-scale.js
+++ b/ui/effect-scale.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/scale-effect/
*/
+
+//>>label: Scale Effect
+//>>group: Effects
+//>>description: Grows or shrinks an element and its content. Restores an element to its original size.
+//>>docs: http://api.jqueryui.com/scale-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-shake.js b/ui/effect-shake.js
index 5e7c6aa4e..896d6f95e 100644
--- a/ui/effect-shake.js
+++ b/ui/effect-shake.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/shake-effect/
*/
+
+//>>label: Shake Effect
+//>>group: Effects
+//>>description: Shakes an element horizontally or vertically n times.
+//>>docs: http://api.jqueryui.com/shake-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-size.js b/ui/effect-size.js
index 7caa9501a..984d74105 100644
--- a/ui/effect-size.js
+++ b/ui/effect-size.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/size-effect/
*/
+
+//>>label: Size Effect
+//>>group: Effects
+//>>description: Resize an element to a specified width and height.
+//>>docs: http://api.jqueryui.com/size-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-slide.js b/ui/effect-slide.js
index 53e4b8357..ec1fec629 100644
--- a/ui/effect-slide.js
+++ b/ui/effect-slide.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/slide-effect/
*/
+
+//>>label: Slide Effect
+//>>group: Effects
+//>>description: Slides an element in and out of the viewport.
+//>>docs: http://api.jqueryui.com/slide-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect-transfer.js b/ui/effect-transfer.js
index ec960cd33..1008e5b47 100644
--- a/ui/effect-transfer.js
+++ b/ui/effect-transfer.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/transfer-effect/
*/
+
+//>>label: Transfer Effect
+//>>group: Effects
+//>>description: Displays a transfer effect from one element to another.
+//>>docs: http://api.jqueryui.com/transfer-effect/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/effect.js b/ui/effect.js
index 6fe99708b..fbbd7fe28 100644
--- a/ui/effect.js
+++ b/ui/effect.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/category/effects-core/
*/
+
+//>>label: Effects Core
+//>>group: Effects
+//>>description: Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects.
+//>>docs: http://api.jqueryui.com/category/effects-core/
+//>>demos: http://jqueryui.com/effect/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/menu.js b/ui/menu.js
index 6d60e12a5..ad8198643 100644
--- a/ui/menu.js
+++ b/ui/menu.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/menu/
*/
+
+//>>label: Menu
+//>>group: Widgets
+//>>description: Creates nestable menus.
+//>>docs: http://api.jqueryui.com/menu/
+//>>demos: http://jqueryui.com/menu/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/mouse.js b/ui/mouse.js
index 0ac9acb6c..fc499cf5b 100644
--- a/ui/mouse.js
+++ b/ui/mouse.js
@@ -5,9 +5,13 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/mouse/
*/
+
+//>>label: Mouse
+//>>group: UI Core
+//>>description: Abstracts mouse-based interactions to assist in creating certain widgets.
+//>>docs: http://api.jqueryui.com/mouse/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/position.js b/ui/position.js
index 09bc4fe2b..4b0cc4964 100644
--- a/ui/position.js
+++ b/ui/position.js
@@ -8,6 +8,13 @@
*
* http://api.jqueryui.com/position/
*/
+
+//>>label: Position
+//>>group: UI Core
+//>>description: Positions elements relative to other elements.
+//>>docs: http://api.jqueryui.com/position/
+//>>demos: http://jqueryui.com/position/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/progressbar.js b/ui/progressbar.js
index ac8144d73..d7ad1df7f 100644
--- a/ui/progressbar.js
+++ b/ui/progressbar.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/progressbar/
*/
+
+//>>label: Progressbar
+//>>group: Widgets
+//>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators.
+//>>docs: http://api.jqueryui.com/progressbar/
+//>>demos: http://jqueryui.com/progressbar/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/resizable.js b/ui/resizable.js
index a02837a19..5c262f1e5 100644
--- a/ui/resizable.js
+++ b/ui/resizable.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/resizable/
*/
+
+//>>label: Resizble
+//>>group: Interactions
+//>>description: Enables resize functionality for any element.
+//>>docs: http://api.jqueryui.com/resizable/
+//>>demos: http://jqueryui.com/resizable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/selectable.js b/ui/selectable.js
index 81a3f9789..ac67f7ded 100644
--- a/ui/selectable.js
+++ b/ui/selectable.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/selectable/
*/
+
+//>>label: Selectable
+//>>group: Interactions
+//>>description: Allows groups of elements to be selected with the mouse.
+//>>docs: http://api.jqueryui.com/selectable/
+//>>demos: http://jqueryui.com/selectable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/selectmenu.js b/ui/selectmenu.js
index 0859a2c2c..5e9ee351b 100644
--- a/ui/selectmenu.js
+++ b/ui/selectmenu.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/selectmenu
*/
+
+//>>label: Selectmenu
+//>>group: Widgets
+//>>description: Duplicates and extends the functionality of a native HTML select element, allowing it to be customizable in behavior and appearance far beyond the limitations of a native select.
+//>>docs: http://api.jqueryui.com/selectmenu/
+//>>demos: http://jqueryui.com/selectmenu/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/slider.js b/ui/slider.js
index 6d97f3c69..db905ba5e 100644
--- a/ui/slider.js
+++ b/ui/slider.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/slider/
*/
+
+//>>label: Slider
+//>>group: Widgets
+//>>description: Displays a flexible slider with ranges and accessibility via keyboard.
+//>>docs: http://api.jqueryui.com/slider/
+//>>demos: http://jqueryui.com/slider/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/sortable.js b/ui/sortable.js
index 913949c20..c9254651a 100644
--- a/ui/sortable.js
+++ b/ui/sortable.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/sortable/
*/
+
+//>>label: Sortable
+//>>group: Interactions
+//>>description: Enables items in a list to be sorted using the mouse.
+//>>docs: http://api.jqueryui.com/sortable/
+//>>demos: http://jqueryui.com/sortable/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/spinner.js b/ui/spinner.js
index 263b29d3f..c4c748205 100644
--- a/ui/spinner.js
+++ b/ui/spinner.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/spinner/
*/
+
+//>>label: Spinner
+//>>group: Widgets
+//>>description: Displays buttons to easily input numbers via the keyboard or mouse.
+//>>docs: http://api.jqueryui.com/spinner/
+//>>demos: http://jqueryui.com/spinner/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/tabs.js b/ui/tabs.js
index c0b24e743..d0d039db7 100644
--- a/ui/tabs.js
+++ b/ui/tabs.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/tabs/
*/
+
+//>>label: Tabs
+//>>group: Widgets
+//>>description: Transforms a set of container elements into a tab structure.
+//>>docs: http://api.jqueryui.com/tabs/
+//>>demos: http://jqueryui.com/tabs/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/tooltip.js b/ui/tooltip.js
index 180c9f8e2..7decb0606 100644
--- a/ui/tooltip.js
+++ b/ui/tooltip.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/tooltip/
*/
+
+//>>label: Tooltip
+//>>group: Widgets
+//>>description: Shows additional information for any element on hover or focus.
+//>>docs: http://api.jqueryui.com/tooltip/
+//>>demos: http://jqueryui.com/tooltip/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {
diff --git a/ui/widget.js b/ui/widget.js
index 41425b1a9..302705044 100644
--- a/ui/widget.js
+++ b/ui/widget.js
@@ -5,9 +5,14 @@
* Copyright 2014 jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- *
- * http://api.jqueryui.com/jQuery.widget/
*/
+
+//>>label: Widget
+//>>group: UI Core
+//>>description: Provides a factory for creating stateful widgets with a common API.
+//>>docs: http://api.jqueryui.com/jQuery.widget/
+//>>demos: http://jqueryui.com/widget/
+
(function( factory ) {
if ( typeof define === "function" && define.amd ) {