You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use cropit, but I'm having an issue. Clicking on the "Download cropped image" button, even on your own demo page, gives me a new tab with about:blank, but doesn't give me any data or base64 image. Just a blank page.
Is it something with my browser? Or is your demo page no longer working?
I'm experiencing the same issue when I try to use cropit on my own web page.
Kind regards,
Laurens
The text was updated successfully, but these errors were encountered:
Hey everyone!
I think the issue is how Chrome handles the window.open(imageData); line of code.
Replace the example export JQuery function with the following to get it to work on Chrome: $('.export').click(function() { var imageData = $('.image-editor').cropit('export'); var image = new Image(); image.src = imageData; var w = window.open(""); w.document.write(image.outerHTML); });
Hi Scott,
I'm trying to use cropit, but I'm having an issue. Clicking on the "Download cropped image" button, even on your own demo page, gives me a new tab with about:blank, but doesn't give me any data or base64 image. Just a blank page.
Is it something with my browser? Or is your demo page no longer working?
I'm experiencing the same issue when I try to use cropit on my own web page.
Kind regards,
Laurens
The text was updated successfully, but these errors were encountered: