mirror of
https://github.com/maputnik/editor.git
synced 2025-12-24 23:20:00 +00:00
Safari fixes.
This commit is contained in:
@@ -134,7 +134,7 @@ class NumberInput extends React.Component {
|
||||
// Clamp between min/max
|
||||
value = Math.max(this.props.min, Math.min(this.props.max, value));
|
||||
|
||||
this.setState({editing: true, value, dirtyValue});
|
||||
this.setState({value, dirtyValue});
|
||||
this.props.onChange(value);
|
||||
}
|
||||
|
||||
@@ -162,6 +162,13 @@ class NumberInput extends React.Component {
|
||||
onKeyDown={() => {
|
||||
this._keyboardEvent = true;
|
||||
}}
|
||||
onPointerDown={() => {
|
||||
this.setState({editing: true});
|
||||
}}
|
||||
onPointerUp={() => {
|
||||
// Safari doesn't get onBlur event
|
||||
this.setState({editing: false});
|
||||
}}
|
||||
onBlur={() => {
|
||||
this.setState({editing: false});
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user