Use typeof to check for presence of parameters
Signed-off-by: Robin Townsend <robin@robin.town>
This commit is contained in:
parent
3bf742f7aa
commit
b99a6a8d54
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ export default class ImageView extends React.Component<IProps, IState> {
|
||||||
translationX: 0,
|
translationX: 0,
|
||||||
translationY: 0,
|
translationY: 0,
|
||||||
});
|
});
|
||||||
} else if (zoomX === undefined && zoomY === undefined) {
|
} else if (typeof zoomX !== "number" && typeof zoomY !== "number") {
|
||||||
// Zoom relative to the center of the view
|
// Zoom relative to the center of the view
|
||||||
this.setState({
|
this.setState({
|
||||||
zoom: newZoom,
|
zoom: newZoom,
|
||||||
|
|
Loading…
Reference in a new issue