UNPKG

react-pixi-plot

Version:

A React component rendering a zoomable and draggable PIXI.js scene. Intended to render 2d plots

13 lines 412 B
/** * Sets DOM body style pointerEvents to 'none' to prevent global mouse events. */ export const preventGlobalMouseEvents = () => { document.body.style.pointerEvents = 'none'; }; /** * Sets DOM body style pointerEvents to 'auto' to restore global mouse events. */ export const restoreGlobalMouseEvents = () => { document.body.style.pointerEvents = 'auto'; }; //# sourceMappingURL=globalEvents.js.map