garlicjs-rails 1.2.1 → 1.2.2
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.
- data/README.md +1 -1
- data/lib/garlicjs-rails/version.rb +1 -1
- data/vendor/assets/javascripts/garlic.js +2 -2
- metadata +4 -4
data/README.md
CHANGED
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
, getVal: function () {
|
|
124
|
-
return !this.$element.is( 'input[type=checkbox]' ) ? this.$element.val() : ( this.$element.
|
|
124
|
+
return !this.$element.is( 'input[type=checkbox]' ) ? this.$element.val() : ( this.$element.prop( 'checked' ) ? 'checked' : 'unchecked' );
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
/* retrieve localStorage data / state and update elem accordingly */
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
this.remove();
|
|
253
253
|
|
|
254
254
|
if ( this.$element.is( 'input[type=radio], input[type=checkbox]' ) ) {
|
|
255
|
-
$( this.$element ).
|
|
255
|
+
$( this.$element ).prop( 'checked', false );
|
|
256
256
|
return;
|
|
257
257
|
}
|
|
258
258
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: garlicjs-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
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
|
+
date: 2013-07-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: railties
|
|
@@ -58,7 +58,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
58
58
|
version: '0'
|
|
59
59
|
segments:
|
|
60
60
|
- 0
|
|
61
|
-
hash:
|
|
61
|
+
hash: 13812962034695270
|
|
62
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
63
|
none: false
|
|
64
64
|
requirements:
|
|
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
67
67
|
version: '0'
|
|
68
68
|
segments:
|
|
69
69
|
- 0
|
|
70
|
-
hash:
|
|
70
|
+
hash: 13812962034695270
|
|
71
71
|
requirements: []
|
|
72
72
|
rubyforge_project:
|
|
73
73
|
rubygems_version: 1.8.24
|