style: fix linter errors

This commit is contained in:
Brandy Carney
2016-06-14 16:55:01 -04:00
parent a655cd78ac
commit 47f0c995da

View File

@@ -267,7 +267,7 @@ export class Searchbar {
* Align the input placeholder left on focus or if a value exists
*/
shouldAlignLeft() {
return ( (this._value && this._value.toString().trim() != '') || this._sbHasFocus == true );
return ( (this._value && this._value.toString().trim() !== '') || this._sbHasFocus === true );
}
/**