aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/accordion.js4
-rw-r--r--ui/autocomplete.js4
-rw-r--r--ui/button.js6
-rw-r--r--ui/core.js4
-rw-r--r--ui/datepicker.js6
-rw-r--r--ui/dialog.js4
-rw-r--r--ui/draggable.js4
-rw-r--r--ui/droppable.js4
-rw-r--r--ui/effect-blind.js2
-rw-r--r--ui/effect-bounce.js2
-rw-r--r--ui/effect-clip.js2
-rw-r--r--ui/effect-drop.js2
-rw-r--r--ui/effect-explode.js2
-rw-r--r--ui/effect-fade.js2
-rw-r--r--ui/effect-fold.js2
-rw-r--r--ui/effect-highlight.js2
-rw-r--r--ui/effect-puff.js2
-rw-r--r--ui/effect-pulsate.js2
-rw-r--r--ui/effect-scale.js2
-rw-r--r--ui/effect-shake.js2
-rw-r--r--ui/effect-size.js2
-rw-r--r--ui/effect-slide.js2
-rw-r--r--ui/effect-transfer.js2
-rw-r--r--ui/effect.js4
-rw-r--r--ui/menu.js4
-rw-r--r--ui/mouse.js4
-rw-r--r--ui/position.js2
-rw-r--r--ui/progressbar.js4
-rw-r--r--ui/resizable.js4
-rw-r--r--ui/selectable.js4
-rw-r--r--ui/selectmenu.js4
-rw-r--r--ui/slider.js4
-rw-r--r--ui/sortable.js4
-rw-r--r--ui/spinner.js4
-rw-r--r--ui/tabs.js4
-rw-r--r--ui/tooltip.js4
-rw-r--r--ui/widget.js2
37 files changed, 59 insertions, 59 deletions
diff --git a/ui/accordion.js b/ui/accordion.js
index 5b748a3f2..58fd5f97a 100644
--- a/ui/accordion.js
+++ b/ui/accordion.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Accordion @VERSION
+ * jQuery UI Accordion 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -25,7 +25,7 @@
}(function( $ ) {
return $.widget( "ui.accordion", {
- version: "@VERSION",
+ version: "1.11.1",
options: {
active: 0,
animate: {},
diff --git a/ui/autocomplete.js b/ui/autocomplete.js
index 0132ed7f3..ae820edb9 100644
--- a/ui/autocomplete.js
+++ b/ui/autocomplete.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Autocomplete @VERSION
+ * jQuery UI Autocomplete 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -27,7 +27,7 @@
}(function( $ ) {
$.widget( "ui.autocomplete", {
- version: "@VERSION",
+ version: "1.11.1",
defaultElement: "<input>",
options: {
appendTo: null,
diff --git a/ui/button.js b/ui/button.js
index 5d502ad51..829a163ad 100644
--- a/ui/button.js
+++ b/ui/button.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Button @VERSION
+ * jQuery UI Button 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -52,7 +52,7 @@ var lastActive,
};
$.widget( "ui.button", {
- version: "@VERSION",
+ version: "1.11.1",
defaultElement: "<button>",
options: {
disabled: null,
@@ -348,7 +348,7 @@ $.widget( "ui.button", {
});
$.widget( "ui.buttonset", {
- version: "@VERSION",
+ version: "1.11.1",
options: {
items: "button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(ui-button)"
},
diff --git a/ui/core.js b/ui/core.js
index 0bcb46aa7..a5d72ce96 100644
--- a/ui/core.js
+++ b/ui/core.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Core @VERSION
+ * jQuery UI Core 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -24,7 +24,7 @@
$.ui = $.ui || {};
$.extend( $.ui, {
- version: "@VERSION",
+ version: "1.11.1",
keyCode: {
BACKSPACE: 8,
diff --git a/ui/datepicker.js b/ui/datepicker.js
index d3fe3dd1f..a2caf3e6c 100644
--- a/ui/datepicker.js
+++ b/ui/datepicker.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Datepicker @VERSION
+ * jQuery UI Datepicker 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -23,7 +23,7 @@
}
}(function( $ ) {
-$.extend($.ui, { datepicker: { version: "@VERSION" } });
+$.extend($.ui, { datepicker: { version: "1.11.1" } });
var datepicker_instActive;
@@ -2073,7 +2073,7 @@ $.fn.datepicker = function(options){
$.datepicker = new Datepicker(); // singleton instance
$.datepicker.initialized = false;
$.datepicker.uuid = new Date().getTime();
-$.datepicker.version = "@VERSION";
+$.datepicker.version = "1.11.1";
return $.datepicker;
diff --git a/ui/dialog.js b/ui/dialog.js
index 5561a96cd..63e5976ff 100644
--- a/ui/dialog.js
+++ b/ui/dialog.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Dialog @VERSION
+ * jQuery UI Dialog 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -30,7 +30,7 @@
}(function( $ ) {
return $.widget( "ui.dialog", {
- version: "@VERSION",
+ version: "1.11.1",
options: {
appendTo: "body",
autoOpen: true,
diff --git a/ui/draggable.js b/ui/draggable.js
index a6de2889c..b9c1c30dd 100644
--- a/ui/draggable.js
+++ b/ui/draggable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Draggable @VERSION
+ * jQuery UI Draggable 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
$.widget("ui.draggable", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.1",
widgetEventPrefix: "drag",
options: {
addClasses: true,
diff --git a/ui/droppable.js b/ui/droppable.js
index fce8d9bd9..5ac49715a 100644
--- a/ui/droppable.js
+++ b/ui/droppable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Droppable @VERSION
+ * jQuery UI Droppable 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -27,7 +27,7 @@
}(function( $ ) {
$.widget( "ui.droppable", {
- version: "@VERSION",
+ version: "1.11.1",
widgetEventPrefix: "drop",
options: {
accept: "*",
diff --git a/ui/effect-blind.js b/ui/effect-blind.js
index 0582b073a..c9ff287c2 100644
--- a/ui/effect-blind.js
+++ b/ui/effect-blind.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Blind @VERSION
+ * jQuery UI Effects Blind 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-bounce.js b/ui/effect-bounce.js
index 250ef80bc..1ad9af5e4 100644
--- a/ui/effect-bounce.js
+++ b/ui/effect-bounce.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Bounce @VERSION
+ * jQuery UI Effects Bounce 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-clip.js b/ui/effect-clip.js
index b53ff9b4e..ef8e4de2a 100644
--- a/ui/effect-clip.js
+++ b/ui/effect-clip.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Clip @VERSION
+ * jQuery UI Effects Clip 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-drop.js b/ui/effect-drop.js
index 3e1256c5a..473fe6496 100644
--- a/ui/effect-drop.js
+++ b/ui/effect-drop.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Drop @VERSION
+ * jQuery UI Effects Drop 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-explode.js b/ui/effect-explode.js
index f89f88427..2ac421003 100644
--- a/ui/effect-explode.js
+++ b/ui/effect-explode.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Explode @VERSION
+ * jQuery UI Effects Explode 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-fade.js b/ui/effect-fade.js
index 1cfdd2f29..550db95d1 100644
--- a/ui/effect-fade.js
+++ b/ui/effect-fade.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Fade @VERSION
+ * jQuery UI Effects Fade 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-fold.js b/ui/effect-fold.js
index 9c35981e0..9874f978e 100644
--- a/ui/effect-fold.js
+++ b/ui/effect-fold.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Fold @VERSION
+ * jQuery UI Effects Fold 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-highlight.js b/ui/effect-highlight.js
index d6b30b1d4..4e36e6aeb 100644
--- a/ui/effect-highlight.js
+++ b/ui/effect-highlight.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Highlight @VERSION
+ * jQuery UI Effects Highlight 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-puff.js b/ui/effect-puff.js
index 80d2c17e2..39e3ebad4 100644
--- a/ui/effect-puff.js
+++ b/ui/effect-puff.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Puff @VERSION
+ * jQuery UI Effects Puff 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-pulsate.js b/ui/effect-pulsate.js
index 9c6e65e35..32db39350 100644
--- a/ui/effect-pulsate.js
+++ b/ui/effect-pulsate.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Pulsate @VERSION
+ * jQuery UI Effects Pulsate 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-scale.js b/ui/effect-scale.js
index f5a842c47..03e3f0372 100644
--- a/ui/effect-scale.js
+++ b/ui/effect-scale.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Scale @VERSION
+ * jQuery UI Effects Scale 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-shake.js b/ui/effect-shake.js
index 5e7c6aa4e..b11c08f27 100644
--- a/ui/effect-shake.js
+++ b/ui/effect-shake.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Shake @VERSION
+ * jQuery UI Effects Shake 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-size.js b/ui/effect-size.js
index 7caa9501a..2eddfe90c 100644
--- a/ui/effect-size.js
+++ b/ui/effect-size.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Size @VERSION
+ * jQuery UI Effects Size 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-slide.js b/ui/effect-slide.js
index 53e4b8357..ded209ffc 100644
--- a/ui/effect-slide.js
+++ b/ui/effect-slide.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Slide @VERSION
+ * jQuery UI Effects Slide 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect-transfer.js b/ui/effect-transfer.js
index ec960cd33..5ce1f9a25 100644
--- a/ui/effect-transfer.js
+++ b/ui/effect-transfer.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects Transfer @VERSION
+ * jQuery UI Effects Transfer 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/effect.js b/ui/effect.js
index 6ca565390..071c17ce5 100644
--- a/ui/effect.js
+++ b/ui/effect.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects @VERSION
+ * jQuery UI Effects 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -904,7 +904,7 @@ $.fn.extend({
(function() {
$.extend( $.effects, {
- version: "@VERSION",
+ version: "1.11.1",
// Saves a set of properties in a data storage
save: function( element, set ) {
diff --git a/ui/menu.js b/ui/menu.js
index 479ff5a18..26d27715c 100644
--- a/ui/menu.js
+++ b/ui/menu.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Menu @VERSION
+ * jQuery UI Menu 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget( "ui.menu", {
- version: "@VERSION",
+ version: "1.11.1",
defaultElement: "<ul>",
delay: 300,
options: {
diff --git a/ui/mouse.js b/ui/mouse.js
index ecfc748af..1317ad25f 100644
--- a/ui/mouse.js
+++ b/ui/mouse.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Mouse @VERSION
+ * jQuery UI Mouse 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -29,7 +29,7 @@ $( document ).mouseup( function() {
});
return $.widget("ui.mouse", {
- version: "@VERSION",
+ version: "1.11.1",
options: {
cancel: "input,textarea,button,select,option",
distance: 1,
diff --git a/ui/position.js b/ui/position.js
index 09bc4fe2b..5766fc0ec 100644
--- a/ui/position.js
+++ b/ui/position.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Position @VERSION
+ * jQuery UI Position 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
diff --git a/ui/progressbar.js b/ui/progressbar.js
index ac8144d73..936b5a81d 100644
--- a/ui/progressbar.js
+++ b/ui/progressbar.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Progressbar @VERSION
+ * jQuery UI Progressbar 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -25,7 +25,7 @@
}(function( $ ) {
return $.widget( "ui.progressbar", {
- version: "@VERSION",
+ version: "1.11.1",
options: {
max: 100,
value: 0,
diff --git a/ui/resizable.js b/ui/resizable.js
index a02837a19..a1efbc28c 100644
--- a/ui/resizable.js
+++ b/ui/resizable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Resizable @VERSION
+ * jQuery UI Resizable 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
$.widget("ui.resizable", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.1",
widgetEventPrefix: "resize",
options: {
alsoResize: false,
diff --git a/ui/selectable.js b/ui/selectable.js
index 81a3f9789..be6e5f0fd 100644
--- a/ui/selectable.js
+++ b/ui/selectable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Selectable @VERSION
+ * jQuery UI Selectable 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget("ui.selectable", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.1",
options: {
appendTo: "body",
autoRefresh: true,
diff --git a/ui/selectmenu.js b/ui/selectmenu.js
index a3d4281a6..5532756ec 100644
--- a/ui/selectmenu.js
+++ b/ui/selectmenu.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Selectmenu @VERSION
+ * jQuery UI Selectmenu 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -27,7 +27,7 @@
}(function( $ ) {
return $.widget( "ui.selectmenu", {
- version: "@VERSION",
+ version: "1.11.1",
defaultElement: "<select>",
options: {
appendTo: null,
diff --git a/ui/slider.js b/ui/slider.js
index 58b5c0759..28ba5a1bb 100644
--- a/ui/slider.js
+++ b/ui/slider.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Slider @VERSION
+ * jQuery UI Slider 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget( "ui.slider", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.1",
widgetEventPrefix: "slide",
options: {
diff --git a/ui/sortable.js b/ui/sortable.js
index c7edd3d1f..4b12545fd 100644
--- a/ui/sortable.js
+++ b/ui/sortable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Sortable @VERSION
+ * jQuery UI Sortable 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget("ui.sortable", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.1",
widgetEventPrefix: "sort",
ready: false,
options: {
diff --git a/ui/spinner.js b/ui/spinner.js
index 263b29d3f..8b90d71d3 100644
--- a/ui/spinner.js
+++ b/ui/spinner.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Spinner @VERSION
+ * jQuery UI Spinner 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -37,7 +37,7 @@ function spinner_modifier( fn ) {
}
return $.widget( "ui.spinner", {
- version: "@VERSION",
+ version: "1.11.1",
defaultElement: "<input>",
widgetEventPrefix: "spin",
options: {
diff --git a/ui/tabs.js b/ui/tabs.js
index c45d6b3f6..b5ee1b1a9 100644
--- a/ui/tabs.js
+++ b/ui/tabs.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Tabs @VERSION
+ * jQuery UI Tabs 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -25,7 +25,7 @@
}(function( $ ) {
return $.widget( "ui.tabs", {
- version: "@VERSION",
+ version: "1.11.1",
delay: 300,
options: {
active: null,
diff --git a/ui/tooltip.js b/ui/tooltip.js
index 048b6324a..b5fd631a3 100644
--- a/ui/tooltip.js
+++ b/ui/tooltip.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Tooltip @VERSION
+ * jQuery UI Tooltip 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget( "ui.tooltip", {
- version: "@VERSION",
+ version: "1.11.1",
options: {
content: function() {
// support: IE<9, Opera in jQuery <1.7
diff --git a/ui/widget.js b/ui/widget.js
index edeb7fa6f..3ab84a319 100644
--- a/ui/widget.js
+++ b/ui/widget.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Widget @VERSION
+ * jQuery UI Widget 1.11.1
* http://jqueryui.com
*
* Copyright 2014 jQuery Foundation and other contributors