Handle pressing Enter to finish keyboard dragging of slider
This commit is contained in:
@@ -501,6 +501,13 @@ function onKeyDown(e) {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
break;
|
||||
case 'Enter':
|
||||
if (this.keyboardDragging) {
|
||||
finishKeyboardDragging(this);
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user