style(range): removes trailing white spaces

This commit is contained in:
Manu Mtz.-Almeida
2017-03-15 16:56:27 +01:00
parent 8f310eba4a
commit 1efc4aea0f

View File

@ -306,7 +306,7 @@ export class Range extends Ion implements AfterViewInit, ControlValueAccessor, O
* @output {Range} Emitted when the range selector drag starts.
*/
@Output() ionFocus: EventEmitter<Range> = new EventEmitter<Range>();
/**
* @output {Range} Emitted when the range value changes.
*/
@ -367,7 +367,7 @@ export class Range extends Ion implements AfterViewInit, ControlValueAccessor, O
// trigger ionFocus event
this.ionFocus.emit(this);
// prevent default so scrolling does not happen
ev.preventDefault();
ev.stopPropagation();
@ -423,7 +423,7 @@ export class Range extends Ion implements AfterViewInit, ControlValueAccessor, O
// trigger a haptic end
this._haptic.gestureSelectionEnd();
// trigger ionBlur event
this.ionBlur.emit(this);
}