volt-fields 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/fields/views/text/index.html +1 -1
- data/app/fields/views/textarea/index.html +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39511b4f74a34f54dca6d2878ea19e52355ac651
|
4
|
+
data.tar.gz: 2d593b2d5ca0e31f2f15a836c8d3affd6d14baf1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fde3709ec93c79052a5b4aa15212eb9bf9efbf851829c2768a4b46a0d9ac1a321a2af586672d15e63f963af41f9014d2a2c8db117cb11d982db406a8b7614735
|
7
|
+
data.tar.gz: 856c6497b94258f23d50555318f4cfa05407488ae83ef4d37fab22f2975eaf99af820ecaaea3d818c8dd232c98ebde387fa4fab7080d9af3e922cc69f967a6bd
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<:Body>
|
2
2
|
<div class="form-group {{ if errors }}has-error{{ elsif marked }}has-success{{ end }} has-feedback">
|
3
|
-
{{ if label }}
|
3
|
+
{{ if label.present? }}
|
4
4
|
<label class="control-label">{{ label }}</label>
|
5
5
|
{{ end }}
|
6
6
|
<input type="{{ @type }}" value="{{ attrs.value }}" e-focusout="blur" class="form-control" placeholder="{{ attrs.placeholder }}" />
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<:Body>
|
2
2
|
<div class="form-group {{ if errors }}has-error{{ elsif marked }}has-success{{ end }} has-feedback">
|
3
|
-
{{ if label }}
|
3
|
+
{{ if label.present? }}
|
4
4
|
<label class="control-label">{{ label }}</label>
|
5
5
|
{{ end }}
|
6
6
|
<textarea e-focusout="blur" class="form-control" placeholder="{{ attrs.placeholder }}">{{ attrs.value }}</textarea>
|