jquery-ui-rails 4.2.0 → 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 (63) hide show
  1. data/History.md +4 -0
  2. data/VERSIONS.md +1 -0
  3. data/app/assets/javascripts/jquery.ui.accordion.js +13 -15
  4. data/app/assets/javascripts/jquery.ui.autocomplete.js +12 -16
  5. data/app/assets/javascripts/jquery.ui.button.js +21 -45
  6. data/app/assets/javascripts/jquery.ui.core.js +3 -3
  7. data/app/assets/javascripts/jquery.ui.datepicker-es.js +7 -7
  8. data/app/assets/javascripts/jquery.ui.datepicker-fi.js +1 -1
  9. data/app/assets/javascripts/jquery.ui.datepicker-fr-CH.js +7 -7
  10. data/app/assets/javascripts/jquery.ui.datepicker-fr.js +6 -6
  11. data/app/assets/javascripts/jquery.ui.datepicker-is.js +1 -1
  12. data/app/assets/javascripts/jquery.ui.datepicker-lt.js +2 -2
  13. data/app/assets/javascripts/jquery.ui.datepicker-lv.js +4 -4
  14. data/app/assets/javascripts/jquery.ui.datepicker-pt.js +1 -1
  15. data/app/assets/javascripts/jquery.ui.datepicker.js +4 -4
  16. data/app/assets/javascripts/jquery.ui.dialog.js +25 -10
  17. data/app/assets/javascripts/jquery.ui.draggable.js +3 -3
  18. data/app/assets/javascripts/jquery.ui.droppable.js +31 -14
  19. data/app/assets/javascripts/jquery.ui.effect-blind.js +2 -2
  20. data/app/assets/javascripts/jquery.ui.effect-bounce.js +2 -2
  21. data/app/assets/javascripts/jquery.ui.effect-clip.js +2 -2
  22. data/app/assets/javascripts/jquery.ui.effect-drop.js +2 -2
  23. data/app/assets/javascripts/jquery.ui.effect-explode.js +2 -2
  24. data/app/assets/javascripts/jquery.ui.effect-fade.js +2 -2
  25. data/app/assets/javascripts/jquery.ui.effect-fold.js +2 -2
  26. data/app/assets/javascripts/jquery.ui.effect-highlight.js +2 -2
  27. data/app/assets/javascripts/jquery.ui.effect-pulsate.js +2 -2
  28. data/app/assets/javascripts/jquery.ui.effect-scale.js +2 -2
  29. data/app/assets/javascripts/jquery.ui.effect-shake.js +2 -2
  30. data/app/assets/javascripts/jquery.ui.effect-slide.js +2 -2
  31. data/app/assets/javascripts/jquery.ui.effect-transfer.js +2 -2
  32. data/app/assets/javascripts/jquery.ui.effect.js +3 -3
  33. data/app/assets/javascripts/jquery.ui.menu.js +14 -8
  34. data/app/assets/javascripts/jquery.ui.mouse.js +3 -3
  35. data/app/assets/javascripts/jquery.ui.position.js +11 -7
  36. data/app/assets/javascripts/jquery.ui.progressbar.js +3 -3
  37. data/app/assets/javascripts/jquery.ui.resizable.js +20 -10
  38. data/app/assets/javascripts/jquery.ui.selectable.js +3 -3
  39. data/app/assets/javascripts/jquery.ui.slider.js +11 -7
  40. data/app/assets/javascripts/jquery.ui.sortable.js +18 -14
  41. data/app/assets/javascripts/jquery.ui.spinner.js +9 -5
  42. data/app/assets/javascripts/jquery.ui.tabs.js +8 -5
  43. data/app/assets/javascripts/jquery.ui.tooltip.js +3 -3
  44. data/app/assets/javascripts/jquery.ui.widget.js +5 -5
  45. data/app/assets/stylesheets/jquery.ui.accordion.css.erb +3 -3
  46. data/app/assets/stylesheets/jquery.ui.all.css.erb +3 -3
  47. data/app/assets/stylesheets/jquery.ui.autocomplete.css.erb +3 -3
  48. data/app/assets/stylesheets/jquery.ui.base.css.erb +3 -3
  49. data/app/assets/stylesheets/jquery.ui.button.css.erb +3 -3
  50. data/app/assets/stylesheets/jquery.ui.core.css.erb +3 -3
  51. data/app/assets/stylesheets/jquery.ui.datepicker.css.erb +3 -6
  52. data/app/assets/stylesheets/jquery.ui.dialog.css.erb +5 -4
  53. data/app/assets/stylesheets/jquery.ui.menu.css.erb +3 -3
  54. data/app/assets/stylesheets/jquery.ui.progressbar.css.erb +3 -3
  55. data/app/assets/stylesheets/jquery.ui.resizable.css.erb +2 -4
  56. data/app/assets/stylesheets/jquery.ui.selectable.css.erb +2 -4
  57. data/app/assets/stylesheets/jquery.ui.slider.css.erb +3 -3
  58. data/app/assets/stylesheets/jquery.ui.spinner.css.erb +5 -5
  59. data/app/assets/stylesheets/jquery.ui.tabs.css.erb +8 -9
  60. data/app/assets/stylesheets/jquery.ui.theme.css.erb +8 -4
  61. data/app/assets/stylesheets/jquery.ui.tooltip.css.erb +4 -2
  62. data/lib/jquery/ui/rails/version.rb +2 -2
  63. metadata +3 -3
@@ -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.2.0"
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.2.0
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: 2014-02-18 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
@@ -219,7 +219,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
219
219
  version: '0'
220
220
  segments:
221
221
  - 0
222
- hash: 1956729609395004839
222
+ hash: 1675100067475730951
223
223
  required_rubygems_version: !ruby/object:Gem::Requirement
224
224
  none: false
225
225
  requirements: