chore(zoompane): remove unused code
This commit is contained in:
@@ -235,29 +235,16 @@ const ZoomPane = ({
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if the target element is inside the nowheel class, we prevent zooming
|
// if the target element is inside an element with the nowheel class, we prevent zooming
|
||||||
if (isWrappedWithClass(event, noWheelClassName) && event.type === 'wheel') {
|
if (isWrappedWithClass(event, noWheelClassName) && event.type === 'wheel') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if the target element is inside the nopan class, we prevent panning
|
// if the target element is inside an element with the nopan class, we prevent panning
|
||||||
if (isWrappedWithClass(event, noPanClassName) && event.type !== 'wheel') {
|
if (isWrappedWithClass(event, noPanClassName) && event.type !== 'wheel') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// when the target element is a node, we still allow zooming
|
|
||||||
// if (
|
|
||||||
// (event.target.closest('.react-flow__node') || event.target.closest('.react-flow__edge')) &&
|
|
||||||
// event.type !== 'wheel'
|
|
||||||
// ) {
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// // when the target element is a node selection, we still allow zooming
|
|
||||||
// if (event.target.closest('.react-flow__nodesselection') && event.type !== 'wheel') {
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
|
|
||||||
if (!zoomOnPinch && event.ctrlKey && event.type === 'wheel') {
|
if (!zoomOnPinch && event.ctrlKey && event.type === 'wheel') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user