aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-02-12 13:01:52 -0500
committerScott González <scott.gonzalez@gmail.com>2015-02-12 13:01:52 -0500
commit9422541ccfb51839e735537ba270fec2f6e03f42 (patch)
treed543d940e22aed51a670fc81d99c87354ff383c8 /ui
parent8dfc67d46865889057164005c827d1193781bc9d (diff)
downloadjquery-ui-1.11.3.tar.gz
jquery-ui-1.11.3.zip
1.11.31.11.3
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 46f7e8509..c8878b6d2 100644
--- a/ui/accordion.js
+++ b/ui/accordion.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Accordion @VERSION
+ * jQuery UI Accordion 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -25,7 +25,7 @@
}(function( $ ) {
return $.widget( "ui.accordion", {
- version: "@VERSION",
+ version: "1.11.3",
options: {
active: 0,
animate: {},
diff --git a/ui/autocomplete.js b/ui/autocomplete.js
index dc970b5c7..7671c7fb0 100644
--- a/ui/autocomplete.js
+++ b/ui/autocomplete.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Autocomplete @VERSION
+ * jQuery UI Autocomplete 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -27,7 +27,7 @@
}(function( $ ) {
$.widget( "ui.autocomplete", {
- version: "@VERSION",
+ version: "1.11.3",
defaultElement: "<input>",
options: {
appendTo: null,
diff --git a/ui/button.js b/ui/button.js
index 3269e85ca..d58de5ded 100644
--- a/ui/button.js
+++ b/ui/button.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Button @VERSION
+ * jQuery UI Button 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -52,7 +52,7 @@ var lastActive,
};
$.widget( "ui.button", {
- version: "@VERSION",
+ version: "1.11.3",
defaultElement: "<button>",
options: {
disabled: null,
@@ -348,7 +348,7 @@ $.widget( "ui.button", {
});
$.widget( "ui.buttonset", {
- version: "@VERSION",
+ version: "1.11.3",
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 0b2e03950..c2bdb8dee 100644
--- a/ui/core.js
+++ b/ui/core.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Core @VERSION
+ * jQuery UI Core 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -24,7 +24,7 @@
$.ui = $.ui || {};
$.extend( $.ui, {
- version: "@VERSION",
+ version: "1.11.3",
keyCode: {
BACKSPACE: 8,
diff --git a/ui/datepicker.js b/ui/datepicker.js
index 9baa5f5cc..e697abb46 100644
--- a/ui/datepicker.js
+++ b/ui/datepicker.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Datepicker @VERSION
+ * jQuery UI Datepicker 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -23,7 +23,7 @@
}
}(function( $ ) {
-$.extend($.ui, { datepicker: { version: "@VERSION" } });
+$.extend($.ui, { datepicker: { version: "1.11.3" } });
var datepicker_instActive;
@@ -2077,7 +2077,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.3";
return $.datepicker;
diff --git a/ui/dialog.js b/ui/dialog.js
index e5c0bfe21..41f8740d7 100644
--- a/ui/dialog.js
+++ b/ui/dialog.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Dialog @VERSION
+ * jQuery UI Dialog 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -30,7 +30,7 @@
}(function( $ ) {
return $.widget( "ui.dialog", {
- version: "@VERSION",
+ version: "1.11.3",
options: {
appendTo: "body",
autoOpen: true,
diff --git a/ui/draggable.js b/ui/draggable.js
index a9d0279c4..39bf63140 100644
--- a/ui/draggable.js
+++ b/ui/draggable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Draggable @VERSION
+ * jQuery UI Draggable 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
$.widget("ui.draggable", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.3",
widgetEventPrefix: "drag",
options: {
addClasses: true,
diff --git a/ui/droppable.js b/ui/droppable.js
index 950be94aa..eb667aca8 100644
--- a/ui/droppable.js
+++ b/ui/droppable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Droppable @VERSION
+ * jQuery UI Droppable 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -27,7 +27,7 @@
}(function( $ ) {
$.widget( "ui.droppable", {
- version: "@VERSION",
+ version: "1.11.3",
widgetEventPrefix: "drop",
options: {
accept: "*",
diff --git a/ui/effect-blind.js b/ui/effect-blind.js
index 92a3ff6a1..1fde3aed8 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-bounce.js b/ui/effect-bounce.js
index 6eba43039..512930729 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-clip.js b/ui/effect-clip.js
index b11e12ddd..04748713a 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-drop.js b/ui/effect-drop.js
index 9bc1daa30..4f4540001 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-explode.js b/ui/effect-explode.js
index 73cb6d286..62f3b19b4 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-fade.js b/ui/effect-fade.js
index 55927d9c1..de65722d7 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-fold.js b/ui/effect-fold.js
index 9e570d490..242ba65f7 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-highlight.js b/ui/effect-highlight.js
index a77fc960a..8ebc89153 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-puff.js b/ui/effect-puff.js
index 1c3f9b74f..6d9968381 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-pulsate.js b/ui/effect-pulsate.js
index 522866688..6f919bee3 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-scale.js b/ui/effect-scale.js
index be0ec47b2..2845e5797 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-shake.js b/ui/effect-shake.js
index 47b4b90df..e8d7c3210 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-size.js b/ui/effect-size.js
index 1ac935ebc..eb93ec52a 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-slide.js b/ui/effect-slide.js
index 65a5655c8..5a8aa371e 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect-transfer.js b/ui/effect-transfer.js
index 84c2a9413..cf5514160 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.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/effect.js b/ui/effect.js
index def4d15f1..ec0180e7d 100644
--- a/ui/effect.js
+++ b/ui/effect.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Effects @VERSION
+ * jQuery UI Effects 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -904,7 +904,7 @@ $.fn.extend({
(function() {
$.extend( $.effects, {
- version: "@VERSION",
+ version: "1.11.3",
// Saves a set of properties in a data storage
save: function( element, set ) {
diff --git a/ui/menu.js b/ui/menu.js
index 4b1435935..b71dd3af4 100644
--- a/ui/menu.js
+++ b/ui/menu.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Menu @VERSION
+ * jQuery UI Menu 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget( "ui.menu", {
- version: "@VERSION",
+ version: "1.11.3",
defaultElement: "<ul>",
delay: 300,
options: {
diff --git a/ui/mouse.js b/ui/mouse.js
index 79291bd24..982ef5160 100644
--- a/ui/mouse.js
+++ b/ui/mouse.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Mouse @VERSION
+ * jQuery UI Mouse 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -29,7 +29,7 @@ $( document ).mouseup( function() {
});
return $.widget("ui.mouse", {
- version: "@VERSION",
+ version: "1.11.3",
options: {
cancel: "input,textarea,button,select,option",
distance: 1,
diff --git a/ui/position.js b/ui/position.js
index 28aca6dc6..831ef9043 100644
--- a/ui/position.js
+++ b/ui/position.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Position @VERSION
+ * jQuery UI Position 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
diff --git a/ui/progressbar.js b/ui/progressbar.js
index 548e85aaa..f16dc2931 100644
--- a/ui/progressbar.js
+++ b/ui/progressbar.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Progressbar @VERSION
+ * jQuery UI Progressbar 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -25,7 +25,7 @@
}(function( $ ) {
return $.widget( "ui.progressbar", {
- version: "@VERSION",
+ version: "1.11.3",
options: {
max: 100,
value: 0,
diff --git a/ui/resizable.js b/ui/resizable.js
index 88b9ee7ea..e515b13a6 100644
--- a/ui/resizable.js
+++ b/ui/resizable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Resizable @VERSION
+ * jQuery UI Resizable 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
$.widget("ui.resizable", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.3",
widgetEventPrefix: "resize",
options: {
alsoResize: false,
diff --git a/ui/selectable.js b/ui/selectable.js
index 80345b29d..f1ea3376e 100644
--- a/ui/selectable.js
+++ b/ui/selectable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Selectable @VERSION
+ * jQuery UI Selectable 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget("ui.selectable", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.3",
options: {
appendTo: "body",
autoRefresh: true,
diff --git a/ui/selectmenu.js b/ui/selectmenu.js
index 571ac9894..efcf63bbc 100644
--- a/ui/selectmenu.js
+++ b/ui/selectmenu.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Selectmenu @VERSION
+ * jQuery UI Selectmenu 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -27,7 +27,7 @@
}(function( $ ) {
return $.widget( "ui.selectmenu", {
- version: "@VERSION",
+ version: "1.11.3",
defaultElement: "<select>",
options: {
appendTo: null,
diff --git a/ui/slider.js b/ui/slider.js
index edc8b4027..5ea737650 100644
--- a/ui/slider.js
+++ b/ui/slider.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Slider @VERSION
+ * jQuery UI Slider 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget( "ui.slider", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.3",
widgetEventPrefix: "slide",
options: {
diff --git a/ui/sortable.js b/ui/sortable.js
index 13a57e897..fa71f3f5a 100644
--- a/ui/sortable.js
+++ b/ui/sortable.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Sortable @VERSION
+ * jQuery UI Sortable 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget("ui.sortable", $.ui.mouse, {
- version: "@VERSION",
+ version: "1.11.3",
widgetEventPrefix: "sort",
ready: false,
options: {
diff --git a/ui/spinner.js b/ui/spinner.js
index 9beeb133c..0f028cf37 100644
--- a/ui/spinner.js
+++ b/ui/spinner.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Spinner @VERSION
+ * jQuery UI Spinner 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -37,7 +37,7 @@ function spinner_modifier( fn ) {
}
return $.widget( "ui.spinner", {
- version: "@VERSION",
+ version: "1.11.3",
defaultElement: "<input>",
widgetEventPrefix: "spin",
options: {
diff --git a/ui/tabs.js b/ui/tabs.js
index 3cdcae6fc..9439559f4 100644
--- a/ui/tabs.js
+++ b/ui/tabs.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Tabs @VERSION
+ * jQuery UI Tabs 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -25,7 +25,7 @@
}(function( $ ) {
return $.widget( "ui.tabs", {
- version: "@VERSION",
+ version: "1.11.3",
delay: 300,
options: {
active: null,
diff --git a/ui/tooltip.js b/ui/tooltip.js
index 73844c0ea..1e069c6ee 100644
--- a/ui/tooltip.js
+++ b/ui/tooltip.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Tooltip @VERSION
+ * jQuery UI Tooltip 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
@@ -26,7 +26,7 @@
}(function( $ ) {
return $.widget( "ui.tooltip", {
- version: "@VERSION",
+ version: "1.11.3",
options: {
content: function() {
// support: IE<9, Opera in jQuery <1.7
diff --git a/ui/widget.js b/ui/widget.js
index 58235900b..306f05eaa 100644
--- a/ui/widget.js
+++ b/ui/widget.js
@@ -1,5 +1,5 @@
/*!
- * jQuery UI Widget @VERSION
+ * jQuery UI Widget 1.11.3
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors