Skip to content

Commit

Permalink
add changes to changelog and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ajb committed Mar 28, 2013
1 parent bfe44c7 commit ee47960
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#Changelog

**1.1.16-dev**

- Override value by using data-value attribute

**1.1.15 (current stable)**

- **BC Break** removed `.parsley('isFieldValid');` in favor of `.parsley('isValid');`
Expand Down
27 changes: 21 additions & 6 deletions documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
ul.parsley-error-list {
font-size: 11px;
margin: 2px;
list-style-type:none;
list-style-type:none;
}
ul.parsley-error-list li {
line-height: 11px;
Expand All @@ -80,8 +80,8 @@
margin:15px 0 0 0;
}

@media only screen
and (min-device-width : 320px)
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
.not-for-mobile {
display: none;
Expand Down Expand Up @@ -298,7 +298,7 @@ <h4>Properties</h4>
</table>
</td>
</tr>

</tbody>
</table>
</section>
Expand Down Expand Up @@ -339,6 +339,21 @@ <h4>Properties</h4>
</form>
</td>
</tr>
<tr>
<td>
<code>data-value</code>
</td>
<td>

</td>
<td>
Override the value attribute of a form field. Useful for file inputs, where you're not allowed to
set a value. <br/>
eg: <code>data-value="uploadedfile.png"</code>
</td>
<td class="not-for-mobile">
</td>
</tr>
<tr>
<td>
<code>data-validation-minlength</code>
Expand All @@ -362,7 +377,7 @@ <h4>Properties</h4>
<code>data-error-message</code>
</td>
<td>

</td>
<td>
Customize a unique global message for this field. Shown if one constraint fails.
Expand Down Expand Up @@ -399,7 +414,7 @@ <h4>Properties</h4>
<code>data-type-`type`-message</code>
</td>
<td>

</td>
<td>
Customize the error message for the field constraint.<br/>
Expand Down

0 comments on commit ee47960

Please sign in to comment.