jquery-rails 1.0.18 → 1.0.19

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

Potentially problematic release.


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

data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 1.0.19 (26 November 2011)
2
+
3
+ - Updated to jQuery 1.7.1
4
+ - Updated to latest jquery-ujs
5
+ - Fixed disabled links to re-enable when `ajax:before` or
6
+ `ajax:beforeSend` are canceled
7
+ - Switched from deprecated `live` to `delegate`
8
+
1
9
  ## 1.0.18 (18 November 2011)
2
10
 
3
11
  - Updated to latest jquery-ujs
data/README.md CHANGED
@@ -4,7 +4,7 @@ jQuery! For Rails! So great.
4
4
 
5
5
  This gem provides:
6
6
 
7
- * jQuery 1.7
7
+ * jQuery 1.7.1
8
8
  * jQuery UI 1.8.16
9
9
  * the latest jQuery UJS adapter
10
10
  * and Sam Ruby's assert_select_jquery function, which is automatically included for use in tests.
@@ -1,8 +1,8 @@
1
1
  module Jquery
2
2
  module Rails
3
- VERSION = "1.0.18"
4
- JQUERY_VERSION = "1.7.0"
3
+ VERSION = "1.0.19"
4
+ JQUERY_VERSION = "1.7.1"
5
5
  JQUERY_UI_VERSION = "1.8.16"
6
- JQUERY_UJS_VERSION = "4fe37537cb2d8e71005303d3acb469e6205d26db"
6
+ JQUERY_UJS_VERSION = "82292010fb1743f038ab72b1f1e994e91be3eda3"
7
7
  end
8
8
  end