motor slider fixes and fix motor output in vm

This commit is contained in:
Sam El-Husseini
2018-01-12 13:33:25 -08:00
parent dfe84471e8
commit 751ea1494b
4 changed files with 5 additions and 4 deletions

View File

@ -55,13 +55,13 @@ namespace pxsim.visuals {
if (captured && (ev as MouseEvent).clientY != undefined) {
ev.preventDefault();
this.updateSliderValue(pt, parent, ev as MouseEvent);
this.handleSliderDown();
this.handleSliderMove();
}
}, ev => {
captured = true;
if ((ev as MouseEvent).clientY != undefined) {
this.updateSliderValue(pt, parent, ev as MouseEvent);
this.handleSliderMove();
this.handleSliderDown();
}
}, () => {
captured = false;