jquery-ui-rails 4.1.1 → 4.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of jquery-ui-rails might be problematic. Click here for more details.
- data/History.md +13 -0
- data/README.md +4 -3
- data/VERSIONS.md +3 -0
- data/app/assets/javascripts/jquery.ui.accordion.js +13 -15
- data/app/assets/javascripts/jquery.ui.autocomplete.js +12 -16
- data/app/assets/javascripts/jquery.ui.button.js +21 -45
- data/app/assets/javascripts/jquery.ui.core.js +3 -3
- data/app/assets/javascripts/jquery.ui.datepicker-es.js +7 -7
- data/app/assets/javascripts/jquery.ui.datepicker-fi.js +1 -1
- data/app/assets/javascripts/jquery.ui.datepicker-fr-CH.js +7 -7
- data/app/assets/javascripts/jquery.ui.datepicker-fr.js +6 -6
- data/app/assets/javascripts/jquery.ui.datepicker-is.js +1 -1
- data/app/assets/javascripts/jquery.ui.datepicker-lt.js +2 -2
- data/app/assets/javascripts/jquery.ui.datepicker-lv.js +4 -4
- data/app/assets/javascripts/jquery.ui.datepicker-pt.js +1 -1
- data/app/assets/javascripts/jquery.ui.datepicker.js +4 -4
- data/app/assets/javascripts/jquery.ui.dialog.js +25 -10
- data/app/assets/javascripts/jquery.ui.draggable.js +3 -3
- data/app/assets/javascripts/jquery.ui.droppable.js +31 -14
- data/app/assets/javascripts/jquery.ui.effect-blind.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-bounce.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-clip.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-drop.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-explode.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-fade.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-fold.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-highlight.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-pulsate.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-scale.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-shake.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-slide.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect-transfer.js +2 -2
- data/app/assets/javascripts/jquery.ui.effect.js +3 -3
- data/app/assets/javascripts/jquery.ui.menu.js +14 -8
- data/app/assets/javascripts/jquery.ui.mouse.js +3 -3
- data/app/assets/javascripts/jquery.ui.position.js +11 -7
- data/app/assets/javascripts/jquery.ui.progressbar.js +3 -3
- data/app/assets/javascripts/jquery.ui.resizable.js +20 -10
- data/app/assets/javascripts/jquery.ui.selectable.js +3 -3
- data/app/assets/javascripts/jquery.ui.slider.js +11 -7
- data/app/assets/javascripts/jquery.ui.sortable.js +18 -14
- data/app/assets/javascripts/jquery.ui.spinner.js +9 -5
- data/app/assets/javascripts/jquery.ui.tabs.js +8 -5
- data/app/assets/javascripts/jquery.ui.tooltip.js +3 -3
- data/app/assets/javascripts/jquery.ui.widget.js +5 -5
- data/app/assets/stylesheets/jquery.ui.accordion.css.erb +3 -3
- data/app/assets/stylesheets/jquery.ui.all.css.erb +3 -3
- data/app/assets/stylesheets/jquery.ui.autocomplete.css.erb +3 -3
- data/app/assets/stylesheets/jquery.ui.base.css.erb +3 -3
- data/app/assets/stylesheets/jquery.ui.button.css.erb +3 -3
- data/app/assets/stylesheets/jquery.ui.core.css.erb +3 -3
- data/app/assets/stylesheets/jquery.ui.datepicker.css.erb +3 -6
- data/app/assets/stylesheets/jquery.ui.dialog.css.erb +5 -4
- data/app/assets/stylesheets/jquery.ui.menu.css.erb +3 -3
- data/app/assets/stylesheets/jquery.ui.progressbar.css.erb +3 -3
- data/app/assets/stylesheets/jquery.ui.resizable.css.erb +2 -4
- data/app/assets/stylesheets/jquery.ui.selectable.css.erb +2 -4
- data/app/assets/stylesheets/jquery.ui.slider.css.erb +3 -3
- data/app/assets/stylesheets/jquery.ui.spinner.css.erb +5 -5
- data/app/assets/stylesheets/jquery.ui.tabs.css.erb +8 -9
- data/app/assets/stylesheets/jquery.ui.theme.css.erb +8 -4
- data/app/assets/stylesheets/jquery.ui.tooltip.css.erb +4 -2
- data/lib/jquery/ui/rails/version.rb +2 -2
- metadata +5 -5
@@ -3,10 +3,10 @@
|
|
3
3
|
//= require jquery.ui.mouse
|
4
4
|
|
5
5
|
/*!
|
6
|
-
* jQuery UI Sortable 1.10.
|
6
|
+
* jQuery UI Sortable 1.10.4
|
7
7
|
* http://jqueryui.com
|
8
8
|
*
|
9
|
-
* Copyright
|
9
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
10
10
|
* Released under the MIT license.
|
11
11
|
* http://jquery.org/license
|
12
12
|
*
|
@@ -19,8 +19,6 @@
|
|
19
19
|
*/
|
20
20
|
(function( $, undefined ) {
|
21
21
|
|
22
|
-
/*jshint loopfunc: true */
|
23
|
-
|
24
22
|
function isOverAxis( x, reference, size ) {
|
25
23
|
return ( x > reference ) && ( x < ( reference + size ) );
|
26
24
|
}
|
@@ -30,7 +28,7 @@ function isFloating(item) {
|
|
30
28
|
}
|
31
29
|
|
32
30
|
$.widget("ui.sortable", $.ui.mouse, {
|
33
|
-
version: "1.10.
|
31
|
+
version: "1.10.4",
|
34
32
|
widgetEventPrefix: "sort",
|
35
33
|
ready: false,
|
36
34
|
options: {
|
@@ -371,12 +369,12 @@ $.widget("ui.sortable", $.ui.mouse, {
|
|
371
369
|
}
|
372
370
|
|
373
371
|
// Only put the placeholder inside the current Container, skip all
|
374
|
-
// items
|
372
|
+
// items from other containers. This works because when moving
|
375
373
|
// an item from one container to another the
|
376
374
|
// currentContainer is switched before the placeholder is moved.
|
377
375
|
//
|
378
|
-
// Without this moving items in "sub-sortables" can cause
|
379
|
-
// beetween the outer and inner container.
|
376
|
+
// Without this, moving items in "sub-sortables" can cause
|
377
|
+
// the placeholder to jitter beetween the outer and inner container.
|
380
378
|
if (item.instance !== this.currentContainer) {
|
381
379
|
continue;
|
382
380
|
}
|
@@ -644,10 +642,11 @@ $.widget("ui.sortable", $.ui.mouse, {
|
|
644
642
|
|
645
643
|
queries.push([$.isFunction(this.options.items) ? this.options.items.call(this.element, null, { options: this.options, item: this.currentItem }) : $(this.options.items, this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"), this]);
|
646
644
|
|
645
|
+
function addItems() {
|
646
|
+
items.push( this );
|
647
|
+
}
|
647
648
|
for (i = queries.length - 1; i >= 0; i--){
|
648
|
-
queries[i][0].each(
|
649
|
-
items.push(this);
|
650
|
-
});
|
649
|
+
queries[i][0].each( addItems );
|
651
650
|
}
|
652
651
|
|
653
652
|
return $(items);
|
@@ -1205,12 +1204,17 @@ $.widget("ui.sortable", $.ui.mouse, {
|
|
1205
1204
|
|
1206
1205
|
|
1207
1206
|
//Post events to containers
|
1207
|
+
function delayEvent( type, instance, container ) {
|
1208
|
+
return function( event ) {
|
1209
|
+
container._trigger( type, event, instance._uiHash( instance ) );
|
1210
|
+
};
|
1211
|
+
}
|
1208
1212
|
for (i = this.containers.length - 1; i >= 0; i--){
|
1209
|
-
if(!noPropagation) {
|
1210
|
-
delayedTriggers.push(
|
1213
|
+
if (!noPropagation) {
|
1214
|
+
delayedTriggers.push( delayEvent( "deactivate", this, this.containers[ i ] ) );
|
1211
1215
|
}
|
1212
1216
|
if(this.containers[i].containerCache.over) {
|
1213
|
-
delayedTriggers.push(
|
1217
|
+
delayedTriggers.push( delayEvent( "out", this, this.containers[ i ] ) );
|
1214
1218
|
this.containers[i].containerCache.over = 0;
|
1215
1219
|
}
|
1216
1220
|
}
|
@@ -3,10 +3,10 @@
|
|
3
3
|
//= require jquery.ui.button
|
4
4
|
|
5
5
|
/*!
|
6
|
-
* jQuery UI Spinner 1.10.
|
6
|
+
* jQuery UI Spinner 1.10.4
|
7
7
|
* http://jqueryui.com
|
8
8
|
*
|
9
|
-
* Copyright
|
9
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
10
10
|
* Released under the MIT license.
|
11
11
|
* http://jquery.org/license
|
12
12
|
*
|
@@ -31,7 +31,7 @@ function modifier( fn ) {
|
|
31
31
|
}
|
32
32
|
|
33
33
|
$.widget( "ui.spinner", {
|
34
|
-
version: "1.10.
|
34
|
+
version: "1.10.4",
|
35
35
|
defaultElement: "<input>",
|
36
36
|
widgetEventPrefix: "spin",
|
37
37
|
options: {
|
@@ -59,8 +59,12 @@ $.widget( "ui.spinner", {
|
|
59
59
|
this._setOption( "min", this.options.min );
|
60
60
|
this._setOption( "step", this.options.step );
|
61
61
|
|
62
|
-
// format
|
63
|
-
|
62
|
+
// Only format if there is a value, prevents the field from being marked
|
63
|
+
// as invalid in Firefox, see #9573.
|
64
|
+
if ( this.value() !== "" ) {
|
65
|
+
// Format the value, but don't constrain.
|
66
|
+
this._value( this.element.val(), true );
|
67
|
+
}
|
64
68
|
|
65
69
|
this._draw();
|
66
70
|
this._on( this._events );
|
@@ -2,10 +2,10 @@
|
|
2
2
|
//= require jquery.ui.widget
|
3
3
|
|
4
4
|
/*!
|
5
|
-
* jQuery UI Tabs 1.10.
|
5
|
+
* jQuery UI Tabs 1.10.4
|
6
6
|
* http://jqueryui.com
|
7
7
|
*
|
8
|
-
* Copyright
|
8
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
9
9
|
* Released under the MIT license.
|
10
10
|
* http://jquery.org/license
|
11
11
|
*
|
@@ -25,13 +25,17 @@ function getNextTabId() {
|
|
25
25
|
}
|
26
26
|
|
27
27
|
function isLocal( anchor ) {
|
28
|
+
// support: IE7
|
29
|
+
// IE7 doesn't normalize the href property when set via script (#9317)
|
30
|
+
anchor = anchor.cloneNode( false );
|
31
|
+
|
28
32
|
return anchor.hash.length > 1 &&
|
29
33
|
decodeURIComponent( anchor.href.replace( rhash, "" ) ) ===
|
30
34
|
decodeURIComponent( location.href.replace( rhash, "" ) );
|
31
35
|
}
|
32
36
|
|
33
37
|
$.widget( "ui.tabs", {
|
34
|
-
version: "1.10.
|
38
|
+
version: "1.10.4",
|
35
39
|
delay: 300,
|
36
40
|
options: {
|
37
41
|
active: null,
|
@@ -153,7 +157,6 @@ $.widget( "ui.tabs", {
|
|
153
157
|
},
|
154
158
|
|
155
159
|
_tabKeydown: function( event ) {
|
156
|
-
/*jshint maxcomplexity:15*/
|
157
160
|
var focusedTab = $( this.document[0].activeElement ).closest( "li" ),
|
158
161
|
selectedIndex = this.tabs.index( focusedTab ),
|
159
162
|
goingForward = true;
|
@@ -441,7 +444,7 @@ $.widget( "ui.tabs", {
|
|
441
444
|
|
442
445
|
// allow overriding how to find the list for rare usage scenarios (#7715)
|
443
446
|
_getList: function() {
|
444
|
-
return this.element.find( "ol,ul" ).eq( 0 );
|
447
|
+
return this.tablist || this.element.find( "ol,ul" ).eq( 0 );
|
445
448
|
},
|
446
449
|
|
447
450
|
_createPanel: function( id ) {
|
@@ -3,10 +3,10 @@
|
|
3
3
|
//= require jquery.ui.position
|
4
4
|
|
5
5
|
/*!
|
6
|
-
* jQuery UI Tooltip 1.10.
|
6
|
+
* jQuery UI Tooltip 1.10.4
|
7
7
|
* http://jqueryui.com
|
8
8
|
*
|
9
|
-
* Copyright
|
9
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
10
10
|
* Released under the MIT license.
|
11
11
|
* http://jquery.org/license
|
12
12
|
*
|
@@ -47,7 +47,7 @@ function removeDescribedBy( elem ) {
|
|
47
47
|
}
|
48
48
|
|
49
49
|
$.widget( "ui.tooltip", {
|
50
|
-
version: "1.10.
|
50
|
+
version: "1.10.4",
|
51
51
|
options: {
|
52
52
|
content: function() {
|
53
53
|
// support: IE<9, Opera in jQuery <1.7
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Widget 1.10.
|
2
|
+
* jQuery UI Widget 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
@@ -106,7 +106,7 @@ $.widget = function( name, base, prototype ) {
|
|
106
106
|
// TODO: remove support for widgetEventPrefix
|
107
107
|
// always use the name + a colon as the prefix, e.g., draggable:start
|
108
108
|
// don't prefix for widgets that aren't DOM-based
|
109
|
-
widgetEventPrefix: existingConstructor ? basePrototype.widgetEventPrefix : name
|
109
|
+
widgetEventPrefix: existingConstructor ? (basePrototype.widgetEventPrefix || name) : name
|
110
110
|
}, proxiedPrototype, {
|
111
111
|
constructor: constructor,
|
112
112
|
namespace: namespace,
|
@@ -315,12 +315,12 @@ $.Widget.prototype = {
|
|
315
315
|
curOption = curOption[ parts[ i ] ];
|
316
316
|
}
|
317
317
|
key = parts.pop();
|
318
|
-
if (
|
318
|
+
if ( arguments.length === 1 ) {
|
319
319
|
return curOption[ key ] === undefined ? null : curOption[ key ];
|
320
320
|
}
|
321
321
|
curOption[ key ] = value;
|
322
322
|
} else {
|
323
|
-
if (
|
323
|
+
if ( arguments.length === 1 ) {
|
324
324
|
return this.options[ key ] === undefined ? null : this.options[ key ];
|
325
325
|
}
|
326
326
|
options[ key ] = value;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Accordion 1.10.
|
2
|
+
* jQuery UI Accordion 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/accordion/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI CSS Framework 1.10.
|
2
|
+
* jQuery UI CSS Framework 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/category/theming/
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.base
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Autocomplete 1.10.
|
2
|
+
* jQuery UI Autocomplete 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/autocomplete/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI CSS Framework 1.10.
|
2
|
+
* jQuery UI CSS Framework 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/category/theming/
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Button 1.10.
|
2
|
+
* jQuery UI Button 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/button/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI CSS Framework 1.10.
|
2
|
+
* jQuery UI CSS Framework 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/category/theming/
|
10
10
|
*/
|
11
11
|
|
12
12
|
/* Layout helpers
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Datepicker 1.10.
|
2
|
+
* jQuery UI Datepicker 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/datepicker/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -62,9 +62,6 @@
|
|
62
62
|
font-size: 1em;
|
63
63
|
margin: 1px 0;
|
64
64
|
}
|
65
|
-
.ui-datepicker select.ui-datepicker-month-year {
|
66
|
-
width: 100%;
|
67
|
-
}
|
68
65
|
.ui-datepicker select.ui-datepicker-month,
|
69
66
|
.ui-datepicker select.ui-datepicker-year {
|
70
67
|
width: 49%;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Dialog 1.10.
|
2
|
+
* jQuery UI Dialog 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/dialog/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -15,6 +15,7 @@
|
|
15
15
|
*= require jquery.ui.theme
|
16
16
|
*/
|
17
17
|
.ui-dialog {
|
18
|
+
overflow: hidden;
|
18
19
|
position: absolute;
|
19
20
|
top: 0;
|
20
21
|
left: 0;
|
@@ -37,7 +38,7 @@
|
|
37
38
|
position: absolute;
|
38
39
|
right: .3em;
|
39
40
|
top: 50%;
|
40
|
-
width:
|
41
|
+
width: 20px;
|
41
42
|
margin: -10px 0 0 0;
|
42
43
|
padding: 1px;
|
43
44
|
height: 20px;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Menu 1.10.
|
2
|
+
* jQuery UI Menu 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/menu/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Progressbar 1.10.
|
2
|
+
* jQuery UI Progressbar 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/progressbar/#theming
|
10
10
|
*/
|
11
11
|
|
12
12
|
/*
|
@@ -1,12 +1,10 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Resizable 1.10.
|
2
|
+
* jQuery UI Resizable 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
|
-
*
|
9
|
-
* http://docs.jquery.com/UI/Resizable#theming
|
10
8
|
*/
|
11
9
|
/*
|
12
10
|
*= require jquery.ui.core
|
@@ -1,12 +1,10 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Selectable 1.10.
|
2
|
+
* jQuery UI Selectable 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
|
-
*
|
9
|
-
* http://docs.jquery.com/UI/Selectable#theming
|
10
8
|
*/
|
11
9
|
/*
|
12
10
|
*= require jquery.ui.core
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Slider 1.10.
|
2
|
+
* jQuery UI Slider 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/slider/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Spinner 1.10.
|
2
|
+
* jQuery UI Spinner 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/spinner/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -43,13 +43,13 @@
|
|
43
43
|
overflow: hidden;
|
44
44
|
right: 0;
|
45
45
|
}
|
46
|
-
/* more specificity required here to
|
46
|
+
/* more specificity required here to override default borders */
|
47
47
|
.ui-spinner a.ui-spinner-button {
|
48
48
|
border-top: none;
|
49
49
|
border-bottom: none;
|
50
50
|
border-right: none;
|
51
51
|
}
|
52
|
-
/*
|
52
|
+
/* vertically center icon */
|
53
53
|
.ui-spinner .ui-icon {
|
54
54
|
position: absolute;
|
55
55
|
margin-top: -8px;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Tabs 1.10.
|
2
|
+
* jQuery UI Tabs 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/tabs/#theming
|
10
10
|
*/
|
11
11
|
/*
|
12
12
|
*= require jquery.ui.core
|
@@ -30,7 +30,7 @@
|
|
30
30
|
padding: 0;
|
31
31
|
white-space: nowrap;
|
32
32
|
}
|
33
|
-
.ui-tabs .ui-tabs-nav
|
33
|
+
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
|
34
34
|
float: left;
|
35
35
|
padding: .5em 1em;
|
36
36
|
text-decoration: none;
|
@@ -39,13 +39,12 @@
|
|
39
39
|
margin-bottom: -1px;
|
40
40
|
padding-bottom: 1px;
|
41
41
|
}
|
42
|
-
.ui-tabs .ui-tabs-nav li.ui-tabs-active
|
43
|
-
.ui-tabs .ui-tabs-nav li.ui-state-disabled
|
44
|
-
.ui-tabs .ui-tabs-nav li.ui-tabs-loading
|
42
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
|
43
|
+
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
|
44
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
|
45
45
|
cursor: text;
|
46
46
|
}
|
47
|
-
.ui-tabs .ui-tabs-nav li
|
48
|
-
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
|
47
|
+
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
|
49
48
|
cursor: pointer;
|
50
49
|
}
|
51
50
|
.ui-tabs .ui-tabs-panel {
|
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI CSS Framework 1.10.
|
2
|
+
* jQuery UI CSS Framework 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
8
|
*
|
9
|
-
* http://
|
9
|
+
* http://api.jqueryui.com/category/theming/
|
10
10
|
*
|
11
11
|
* To view and modify this theme, visit http://jqueryui.com/themeroller/
|
12
12
|
*/
|
@@ -96,7 +96,11 @@
|
|
96
96
|
.ui-state-hover a,
|
97
97
|
.ui-state-hover a:hover,
|
98
98
|
.ui-state-hover a:link,
|
99
|
-
.ui-state-hover a:visited
|
99
|
+
.ui-state-hover a:visited,
|
100
|
+
.ui-state-focus a,
|
101
|
+
.ui-state-focus a:hover,
|
102
|
+
.ui-state-focus a:link,
|
103
|
+
.ui-state-focus a:visited {
|
100
104
|
color: #212121/*{fcHover}*/;
|
101
105
|
text-decoration: none;
|
102
106
|
}
|
@@ -1,10 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery UI Tooltip 1.10.
|
2
|
+
* jQuery UI Tooltip 1.10.4
|
3
3
|
* http://jqueryui.com
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
6
6
|
* Released under the MIT license.
|
7
7
|
* http://jquery.org/license
|
8
|
+
*
|
9
|
+
* http://api.jqueryui.com/tooltip/#theming
|
8
10
|
*/
|
9
11
|
/*
|
10
12
|
*= require jquery.ui.core
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-ui-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2014-04-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.2.16
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 3.
|
29
|
+
version: 3.2.16
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: json
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -219,7 +219,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
219
219
|
version: '0'
|
220
220
|
segments:
|
221
221
|
- 0
|
222
|
-
hash:
|
222
|
+
hash: 1675100067475730951
|
223
223
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
224
224
|
none: false
|
225
225
|
requirements:
|