Skip to content

Commit

Permalink
v0.7.0 release
Browse files Browse the repository at this point in the history
- Fixed issue about input type radio validation.(#8)
  • Loading branch information
hsnaydd committed Dec 12, 2013
1 parent 14c537d commit fe24a64
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 20 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ If you want special style, you can add a class to error message with this option

```javascript
{
errorClass : 'formHata'
errorClass : 'formError'
}
```

Expand All @@ -88,7 +88,7 @@ You can add a class to error message closure button.

```javascript
{
errorCloseClass : 'formHataKapa'
errorCloseClass : 'formErrorClose'
}
```

Expand Down
6 changes: 5 additions & 1 deletion examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,12 @@ <h2>Example 1</h2>
<option value="1">option 1</option>
<option value="2">option 2</option>
<option value="3">option 3</option>

</select>
</li>
<li><label for="exm-rd" class="ilblock"> Radio </label>
<input type="radio" name="exm-rd" data-validetta="required" class="ilblock" />
<input type="radio" name="exm-rd" data-validetta="required" class="ilblock" />
<input type="radio" name="exm-rd" data-validetta="required" class="ilblock" />
</li>
<li><label>Text Area</label><textarea name="textarea" data-validetta="required"></textarea></li>
<li><label for="exm2-cb" class="ilblock">Checkbox 1</label><input type="checkbox" data-validetta="required" name="exm2-cb" class="ilblock"/></li>
Expand Down
6 changes: 3 additions & 3 deletions validetta-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions validetta.jquery.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name" : "validetta",
"version" : "0.6.0",
"version" : "0.7.0",
"title" : "Validetta - A tiny jquery plugin for validate your forms",
"description" : "Validetta is a tiny jQuery plugin which you can do client-side validation of your forms. It aims to decrease your burden with easy usage and flexible structure.",
"keywords" : ["validetta", "form", "forms", "jquery", "javascript", "validation", "validate"],
"homepage" : "http://lab.hasanaydogdu.com/validetta/",
"docs" : "http://lab.hasanaydogdu.com/validetta/",
"demo" : "http://lab.hasanaydogdu.com/validetta/#examples",
"bugs" : "http://github.com/hsnayd/validetta/issues",
"download" : "http://github.com/hsnayd/validetta/archive/v0.6.0.zip",
"download" : "http://github.com/hsnayd/validetta/archive/v0.7.0.zip",
"author" : {
"name": "Hasan Aydoğdu",
"url" : "http://github.com/hsnayd"
Expand Down
Loading

0 comments on commit fe24a64

Please sign in to comment.