Skip to content
This repository has been archived by the owner on Dec 25, 2017. It is now read-only.

Commit

Permalink
fix(base): fix input wrong behavior
Browse files Browse the repository at this point in the history
Closes #141 #142
  • Loading branch information
kazupon committed Jan 21, 2016
1 parent 391c4e7 commit 2dcafeb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/validations/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export default class BaseValidation {
el.value = scope.$get(model) || ''
this._unwatch = scope.$watch(model, _.bind((val, old) => {
if (val !== old) {
el.value = val
this.handleValidate(el)
}
}, this))
Expand Down

0 comments on commit 2dcafeb

Please sign in to comment.