We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, first of all, I really appreciate for this module.
I found bug(maybe..).
I founding solution, but if you already have, fix it please.
regards, kang
The text was updated successfully, but these errors were encountered:
ngpImageResizer.js
function removeResizer(event) { if (!resizerContainer.parentNode) { return; } if (event && event.target && event.target.tagName === 'IMG') { return; } resizerContainer.style.display = 'none'; lastVerticalCursorPosition = null; }
this code
if (event && event.target.tagName === 'IMG') { return; }
to
if (event && event.target && event.target.tagName === 'IMG') { return; }
will be fix, but it's not perfect solution. I think resizer have to hide when image is deleted.
Sorry, something went wrong.
No branches or pull requests
Hi,
first of all, I really appreciate for this module.
I found bug(maybe..).
I founding solution, but if you already have, fix it please.
regards,
kang
The text was updated successfully, but these errors were encountered: