twine-rails 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/assets/javascripts/twine.js.coffee +2 -2
- data/lib/twine-rails/version.rb +1 -1
- 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: 8bb0295f82c201cd50f08ebe674030b42a7d6288
|
4
|
+
data.tar.gz: f38cdb63ae73e06b1ecd20febe3775442fb7aa6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88276ff5a469578564167b59b0c9b213a989da9debed8a9d5289a83cfecea6bf1772007def8f845a54d527e2bfea770ad6d5829f30d679caf07e8f4a9ece97c4
|
7
|
+
data.tar.gz: 119b1b3f3aba21883e41d9cc7f257367560aeeefcff87dc6f646b80195f8cc73efd8c9e8c78002a25ad8f122c5294e875e17035724213ac947e9c464f71b8d7e
|
@@ -295,7 +295,7 @@ Twine.bindingTypes =
|
|
295
295
|
return
|
296
296
|
|
297
297
|
setupAttributeBinding = (attributeName, bindingName) ->
|
298
|
-
booleanAttribute = attributeName in ['checked', 'disabled', 'readOnly']
|
298
|
+
booleanAttribute = attributeName in ['checked', 'indeterminate', 'disabled', 'readOnly']
|
299
299
|
|
300
300
|
Twine.bindingTypes["bind-#{bindingName}"] = (node, context, definition) ->
|
301
301
|
fn = wrapFunctionString(definition, '$context,$root', node)
|
@@ -308,7 +308,7 @@ setupAttributeBinding = (attributeName, bindingName) ->
|
|
308
308
|
|
309
309
|
fireCustomChangeEvent(node) if attributeName == 'checked'
|
310
310
|
|
311
|
-
for attribute in ['placeholder', 'checked', 'disabled', 'href', 'title', 'readOnly', 'src']
|
311
|
+
for attribute in ['placeholder', 'checked', 'indeterminate', 'disabled', 'href', 'title', 'readOnly', 'src']
|
312
312
|
setupAttributeBinding(attribute, attribute)
|
313
313
|
|
314
314
|
setupAttributeBinding('innerHTML', 'unsafe-html')
|
data/lib/twine-rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twine-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Li
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2016-03-16 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: coffee-rails
|
@@ -86,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
86
|
version: '0'
|
87
87
|
requirements: []
|
88
88
|
rubyforge_project:
|
89
|
-
rubygems_version: 2.
|
89
|
+
rubygems_version: 2.2.3
|
90
90
|
signing_key:
|
91
91
|
specification_version: 4
|
92
92
|
summary: Minimalistic two-way bindings
|