Unchange username_validator.

This commit is contained in:
Bryce Johnson 2016-11-02 11:40:32 +01:00
parent 4b4fde7528
commit b351b26693
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@
this.inputElement.on('keyup.username_check', () => {
const username = this.inputElement.val();
this.state.valid = this.inputDomElement.validity.valid;
this.state.empty = !username.length;