jquery-ui-rails 4.1.1 → 4.2.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jquery-ui-rails might be problematic. Click here for more details.

Files changed (64) hide show
  1. data/History.md +13 -0
  2. data/README.md +4 -3
  3. data/VERSIONS.md +3 -0
  4. data/app/assets/javascripts/jquery.ui.accordion.js +13 -15
  5. data/app/assets/javascripts/jquery.ui.autocomplete.js +12 -16
  6. data/app/assets/javascripts/jquery.ui.button.js +21 -45
  7. data/app/assets/javascripts/jquery.ui.core.js +3 -3
  8. data/app/assets/javascripts/jquery.ui.datepicker-es.js +7 -7
  9. data/app/assets/javascripts/jquery.ui.datepicker-fi.js +1 -1
  10. data/app/assets/javascripts/jquery.ui.datepicker-fr-CH.js +7 -7
  11. data/app/assets/javascripts/jquery.ui.datepicker-fr.js +6 -6
  12. data/app/assets/javascripts/jquery.ui.datepicker-is.js +1 -1
  13. data/app/assets/javascripts/jquery.ui.datepicker-lt.js +2 -2
  14. data/app/assets/javascripts/jquery.ui.datepicker-lv.js +4 -4
  15. data/app/assets/javascripts/jquery.ui.datepicker-pt.js +1 -1
  16. data/app/assets/javascripts/jquery.ui.datepicker.js +4 -4
  17. data/app/assets/javascripts/jquery.ui.dialog.js +25 -10
  18. data/app/assets/javascripts/jquery.ui.draggable.js +3 -3
  19. data/app/assets/javascripts/jquery.ui.droppable.js +31 -14
  20. data/app/assets/javascripts/jquery.ui.effect-blind.js +2 -2
  21. data/app/assets/javascripts/jquery.ui.effect-bounce.js +2 -2
  22. data/app/assets/javascripts/jquery.ui.effect-clip.js +2 -2
  23. data/app/assets/javascripts/jquery.ui.effect-drop.js +2 -2
  24. data/app/assets/javascripts/jquery.ui.effect-explode.js +2 -2
  25. data/app/assets/javascripts/jquery.ui.effect-fade.js +2 -2
  26. data/app/assets/javascripts/jquery.ui.effect-fold.js +2 -2
  27. data/app/assets/javascripts/jquery.ui.effect-highlight.js +2 -2
  28. data/app/assets/javascripts/jquery.ui.effect-pulsate.js +2 -2
  29. data/app/assets/javascripts/jquery.ui.effect-scale.js +2 -2
  30. data/app/assets/javascripts/jquery.ui.effect-shake.js +2 -2
  31. data/app/assets/javascripts/jquery.ui.effect-slide.js +2 -2
  32. data/app/assets/javascripts/jquery.ui.effect-transfer.js +2 -2
  33. data/app/assets/javascripts/jquery.ui.effect.js +3 -3
  34. data/app/assets/javascripts/jquery.ui.menu.js +14 -8
  35. data/app/assets/javascripts/jquery.ui.mouse.js +3 -3
  36. data/app/assets/javascripts/jquery.ui.position.js +11 -7
  37. data/app/assets/javascripts/jquery.ui.progressbar.js +3 -3
  38. data/app/assets/javascripts/jquery.ui.resizable.js +20 -10
  39. data/app/assets/javascripts/jquery.ui.selectable.js +3 -3
  40. data/app/assets/javascripts/jquery.ui.slider.js +11 -7
  41. data/app/assets/javascripts/jquery.ui.sortable.js +18 -14
  42. data/app/assets/javascripts/jquery.ui.spinner.js +9 -5
  43. data/app/assets/javascripts/jquery.ui.tabs.js +8 -5
  44. data/app/assets/javascripts/jquery.ui.tooltip.js +3 -3
  45. data/app/assets/javascripts/jquery.ui.widget.js +5 -5
  46. data/app/assets/stylesheets/jquery.ui.accordion.css.erb +3 -3
  47. data/app/assets/stylesheets/jquery.ui.all.css.erb +3 -3
  48. data/app/assets/stylesheets/jquery.ui.autocomplete.css.erb +3 -3
  49. data/app/assets/stylesheets/jquery.ui.base.css.erb +3 -3
  50. data/app/assets/stylesheets/jquery.ui.button.css.erb +3 -3
  51. data/app/assets/stylesheets/jquery.ui.core.css.erb +3 -3
  52. data/app/assets/stylesheets/jquery.ui.datepicker.css.erb +3 -6
  53. data/app/assets/stylesheets/jquery.ui.dialog.css.erb +5 -4
  54. data/app/assets/stylesheets/jquery.ui.menu.css.erb +3 -3
  55. data/app/assets/stylesheets/jquery.ui.progressbar.css.erb +3 -3
  56. data/app/assets/stylesheets/jquery.ui.resizable.css.erb +2 -4
  57. data/app/assets/stylesheets/jquery.ui.selectable.css.erb +2 -4
  58. data/app/assets/stylesheets/jquery.ui.slider.css.erb +3 -3
  59. data/app/assets/stylesheets/jquery.ui.spinner.css.erb +5 -5
  60. data/app/assets/stylesheets/jquery.ui.tabs.css.erb +8 -9
  61. data/app/assets/stylesheets/jquery.ui.theme.css.erb +8 -4
  62. data/app/assets/stylesheets/jquery.ui.tooltip.css.erb +4 -2
  63. data/lib/jquery/ui/rails/version.rb +2 -2
  64. metadata +5 -5
@@ -3,10 +3,10 @@
3
3
  //= require jquery.ui.mouse
4
4
 
5
5
  /*!
6
- * jQuery UI Sortable 1.10.3
6
+ * jQuery UI Sortable 1.10.4
7
7
  * http://jqueryui.com
8
8
  *
9
- * Copyright 2013 jQuery Foundation and other contributors
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.3",
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 form other containers. This works because when moving
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 the placeholder to jitter
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(function() {
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((function(c) { return function(event) { c._trigger("deactivate", event, this._uiHash(this)); }; }).call(this, this.containers[i]));
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((function(c) { return function(event) { c._trigger("out", event, this._uiHash(this)); }; }).call(this, this.containers[i]));
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.3
6
+ * jQuery UI Spinner 1.10.4
7
7
  * http://jqueryui.com
8
8
  *
9
- * Copyright 2013 jQuery Foundation and other contributors
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.3",
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 the value, but don't constrain
63
- this._value( this.element.val(), true );
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.3
5
+ * jQuery UI Tabs 1.10.4
6
6
  * http://jqueryui.com
7
7
  *
8
- * Copyright 2013 jQuery Foundation and other contributors
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.3",
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.3
6
+ * jQuery UI Tooltip 1.10.4
7
7
  * http://jqueryui.com
8
8
  *
9
- * Copyright 2013 jQuery Foundation and other contributors
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.3",
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.3
2
+ * jQuery UI Widget 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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 ( value === undefined ) {
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 ( value === undefined ) {
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.3
2
+ * jQuery UI Accordion 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Accordion#theming
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.3
2
+ * jQuery UI CSS Framework 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Theming
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.3
2
+ * jQuery UI Autocomplete 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Autocomplete#theming
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.3
2
+ * jQuery UI CSS Framework 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Theming
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.3
2
+ * jQuery UI Button 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Button#theming
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.3
2
+ * jQuery UI CSS Framework 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Theming/API
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.3
2
+ * jQuery UI Datepicker 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Datepicker#theming
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.3
2
+ * jQuery UI Dialog 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Dialog#theming
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: 21px;
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.3
2
+ * jQuery UI Menu 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Menu#theming
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.3
2
+ * jQuery UI Progressbar 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Progressbar#theming
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.3
2
+ * jQuery UI Resizable 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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.3
2
+ * jQuery UI Selectable 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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.3
2
+ * jQuery UI Slider 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Slider#theming
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.3
2
+ * jQuery UI Spinner 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Spinner#theming
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 overide default borders */
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
- /* vertical centre icon */
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.3
2
+ * jQuery UI Tabs 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Tabs#theming
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 li a {
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 a,
43
- .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
44
- .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
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 a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
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.3
2
+ * jQuery UI CSS Framework 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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://docs.jquery.com/UI/Theming/API
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.3
2
+ * jQuery UI Tooltip 1.10.4
3
3
  * http://jqueryui.com
4
4
  *
5
- * Copyright 2013 jQuery Foundation and other contributors
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
@@ -1,8 +1,8 @@
1
1
  module Jquery
2
2
  module Ui
3
3
  module Rails
4
- VERSION = "4.1.1"
5
- JQUERY_UI_VERSION = "1.10.3"
4
+ VERSION = "4.2.1"
5
+ JQUERY_UI_VERSION = "1.10.4"
6
6
  end
7
7
  end
8
8
  end
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.1.1
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: 2013-12-15 00:00:00.000000000 Z
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.1.0
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.1.0
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: -786868778311295094
222
+ hash: 1675100067475730951
223
223
  required_rubygems_version: !ruby/object:Gem::Requirement
224
224
  none: false
225
225
  requirements: