denis-lukin

Results 2 comments of denis-lukin

If you want to use `pressDelay` or `distance`, you could try something like this: ``` updateBeforeSortStart={() => { function disableselect() {return false} document.onselectstart = disableselect; document.onmousedown = disableselect; }} onSortEnd={()...

If someone still doesn't know what to do, you can try this: ``` const convertImgToBase64URL = (url, outputFormat) => new Promise((resolve, reject) => { const img = new Image(); img.crossOrigin...