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
We are using SVG image to present image upload placeholder. It is inserted directly into image's src attribute:
src
this.placeholder = 'data:image/svg+xml;utf8,' + uploadingPlaceholder;
This is not working on FF and Edge since we need to escape special characters from SVG.
The text was updated successfully, but these errors were encountered:
Merge pull request #57 from ckeditor/t/56
785e88b
Fix: Placeholder is now correctly displayed on Firefox and Edge. Closes #56.
szymonkups
Successfully merging a pull request may close this issue.
We are using SVG image to present image upload placeholder. It is inserted directly into image's
src
attribute:This is not working on FF and Edge since we need to escape special characters from SVG.
The text was updated successfully, but these errors were encountered: