Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Commit

Permalink
v0.11.2 ain’t nothing changed (except for a tiny change)
Browse files Browse the repository at this point in the history
  • Loading branch information
1000hz committed Jul 16, 2016
1 parent dc67567 commit ffc41e1
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 16 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
@@ -1,8 +1,11 @@
Changelog
=========
### 0.11.2
* Added `input[type="reset"]` to the ignored input filter

### 0.11.1
* Added a `reset` event listener on the form to reinitialize the plugin.
* Fixed a missed bit of cleanup in `.validator('destroy')` where it wasn't removing the `.has-success` class.
* Added a `reset` event listener on the form to reinitialize the plugin
* Fixed a missed bit of cleanup in `.validator('destroy')` where it wasn't removing the `.has-success` class

### 0.11.0
###### BREAKING CHANGES:
Expand Down
6 changes: 3 additions & 3 deletions dist/validator.js
@@ -1,5 +1,5 @@
/*!
* Validator v0.11.1 for Bootstrap 3, by @1000hz
* Validator v0.11.2 for Bootstrap 3, by @1000hz
* Copyright 2016 Cina Saffary
* Licensed under http://opensource.org/licenses/MIT
*
Expand Down Expand Up @@ -47,9 +47,9 @@
this.toggleSubmit()
}

Validator.VERSION = '0.11.1'
Validator.VERSION = '0.11.2'

Validator.INPUT_SELECTOR = ':input:not([type="hidden"], [type="submit"], button)'
Validator.INPUT_SELECTOR = ':input:not([type="hidden"], [type="submit"], [type="reset"], button)'

Validator.FOCUS_OFFSET = 20

Expand Down
4 changes: 2 additions & 2 deletions dist/validator.min.js

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

6 changes: 3 additions & 3 deletions docs/dist/validator.js
@@ -1,5 +1,5 @@
/*!
* Validator v0.11.1 for Bootstrap 3, by @1000hz
* Validator v0.11.2 for Bootstrap 3, by @1000hz
* Copyright 2016 Cina Saffary
* Licensed under http://opensource.org/licenses/MIT
*
Expand Down Expand Up @@ -47,9 +47,9 @@
this.toggleSubmit()
}

Validator.VERSION = '0.11.1'
Validator.VERSION = '0.11.2'

Validator.INPUT_SELECTOR = ':input:not([type="hidden"], [type="submit"], button)'
Validator.INPUT_SELECTOR = ':input:not([type="hidden"], [type="submit"], [type="reset"], button)'

Validator.FOCUS_OFFSET = 20

Expand Down

0 comments on commit ffc41e1

Please sign in to comment.