jquery-rails 1.0.18 → 1.0.19
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-rails might be problematic. Click here for more details.
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/jquery/rails/version.rb +3 -3
- data/vendor/assets/javascripts/jquery.js +289 -323
- data/vendor/assets/javascripts/jquery.min.js +4 -4
- data/vendor/assets/javascripts/jquery_ujs.js +16 -11
- metadata +10 -10
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
data/lib/jquery/rails/version.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
module Jquery
|
2
2
|
module Rails
|
3
|
-
VERSION = "1.0.
|
4
|
-
JQUERY_VERSION = "1.7.
|
3
|
+
VERSION = "1.0.19"
|
4
|
+
JQUERY_VERSION = "1.7.1"
|
5
5
|
JQUERY_UI_VERSION = "1.8.16"
|
6
|
-
JQUERY_UJS_VERSION = "
|
6
|
+
JQUERY_UJS_VERSION = "82292010fb1743f038ab72b1f1e994e91be3eda3"
|
7
7
|
end
|
8
8
|
end
|