jquery_mobile_rails 1.4.1 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +2 -2
- data/lib/development_tasks/jquery_mobile_rails_tasks.rake +1 -1
- data/lib/jquery_mobile_rails/version.rb +1 -1
- data/vendor/assets/javascripts/jquery.mobile.js +221 -96
- data/vendor/assets/javascripts/jquery.mobile.min.js +7 -7
- data/vendor/assets/stylesheets/jquery.mobile.css.scss +36 -36
- data/vendor/assets/stylesheets/jquery.mobile.min.css.scss +2 -2
- data/vendor/assets/stylesheets/jquery.mobile.structure.css.scss +24 -24
- data/vendor/assets/stylesheets/jquery.mobile.structure.min.css.scss +2 -2
- data/vendor/assets/stylesheets/jquery.mobile.theme.css.scss +14 -14
- data/vendor/assets/stylesheets/jquery.mobile.theme.min.css.scss +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e37a97f947864642cf667084d3d5ca5a0890165
|
4
|
+
data.tar.gz: ff139c1ab4bf916890ab686f326e01da4615695c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4253ca34777b40f6363c5f7a18afe1f9a21a1bc57c24e33f7c7b3e8816f32b99daf4cc8201d1209b6a3c069b0a32f8b2be0c29ccee97695269dd9ab373b87c4
|
7
|
+
data.tar.gz: d6d0f90d57cac2e2dfe8cac527b96e54d58b20bfca0fbc2f956feb7f9c2f71a1935c8811c0c98203275867a038289f01f71d67289edd0c4974a42d5b52f3d3e2
|
data/README.rdoc
CHANGED
@@ -4,7 +4,7 @@ This gem adds the jQuery Mobile files to Rails' asset pipeline.
|
|
4
4
|
|
5
5
|
=== Gem's jQuery Mobile Version
|
6
6
|
|
7
|
-
1.4.
|
7
|
+
1.4.2 (gem 1.4.2)
|
8
8
|
|
9
9
|
=== Installation
|
10
10
|
|
@@ -30,7 +30,7 @@ And the same in your application.css manifest:
|
|
30
30
|
|
31
31
|
I built this gem for using with the Mobylette gem, but it will work with your standalone application, or with any other gem that filters your mobile requests.
|
32
32
|
|
33
|
-
Please refer to jQuery Mobile's documentation for information on laying out your app and using all of the jQuery Mobile features: http://view.jquerymobile.com/1.4.
|
33
|
+
Please refer to jQuery Mobile's documentation for information on laying out your app and using all of the jQuery Mobile features: http://view.jquerymobile.com/1.4.2/dist/demos/
|
34
34
|
|
35
35
|
=== Example
|
36
36
|
|
@@ -11,7 +11,7 @@ task :"jquery_mobile_rails_css_fix" do
|
|
11
11
|
file_content = ''
|
12
12
|
file_content = File.read(css_file_name, mode: "r:UTF-8")
|
13
13
|
|
14
|
-
file_content.gsub! /url\(\"*images\/(
|
14
|
+
file_content.gsub! /url\(\"*images\/(.*?\.)(png|gif)\"*\)/ do
|
15
15
|
"image-url(\"jquery-mobile/#{$1}#{$2}\")"
|
16
16
|
end
|
17
17
|
|