Skip to content

Commit

Permalink
fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalerba committed Nov 11, 2016
1 parent 46e62e6 commit fa6bbcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/slider/slider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export class MdSlider implements ControlValueAccessor {

/** Whether the left side of the slider is the minimum value. */
private _isLeftMin() {
return (this.direction == 'rtl') == this.invert
return (this.direction == 'rtl') == this.invert;
}

/** Increments the slider by the given number of steps (negative number decrements). */
Expand Down

0 comments on commit fa6bbcc

Please sign in to comment.