We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da5febc commit 8caf9a6Copy full SHA for 8caf9a6
src/lib/slider/slider.ts
@@ -336,9 +336,9 @@ export class MdSlider implements ControlValueAccessor {
336
let event = new MdSliderChange();
337
event.source = this;
338
event.value = this.value;
339
- this.change.emit(event);
340
- this._controlValueAccessorChangeFn(this.value);
341
this._lastEmittedValue = this.value;
+ this._controlValueAccessorChangeFn(this.value);
+ this.change.emit(event);
342
}
343
344
0 commit comments