Skip to content

Commit

Permalink
style: fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Jun 14, 2016
1 parent a655cd7 commit 47f0c99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/searchbar/searchbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}

/**
Expand Down

0 comments on commit 47f0c99

Please sign in to comment.