style(input): fix lints

This commit is contained in:
ramonornela
2016-11-17 09:37:35 -02:00
parent cfbc5eabca
commit fa54a4e02d
3 changed files with 8 additions and 6 deletions

View File

@ -147,7 +147,9 @@ export class InputBase extends Ion {
* @private
*/
checkClearOnEdit(inputValue: string) {
if(!this._clearOnEdit) { return; }
if (!this._clearOnEdit) {
return;
}
// Did the input value change after it was blurred and edited?
if (this._didBlurAfterEdit && this.hasValue()) {