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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
This issue was originally filed by pimmhog...@gmail.com
To reproduce the problem:
I'd expect it to work. It doesn't.
The new project-template includes this line: p.innerText = message;
innerText is non-stardard, and doesn't work in Firefox. The line could be replaced by: p.textContent = message;
Note that textContent doesn't work in IE8 and lower.
The text was updated successfully, but these errors were encountered:
Added Area-Editor, Triaged labels.
Sorry, something went wrong.
I'll handle this one.
Set owner to @stevemessick. Added Accepted label.
Added Fixed label.
stevemessick
No branches or pull requests
This issue was originally filed by pimmhog...@gmail.com
To reproduce the problem:
I'd expect it to work. It doesn't.
The new project-template includes this line:
p.innerText = message;
innerText is non-stardard, and doesn't work in Firefox. The line could be replaced by:
p.textContent = message;
Note that textContent doesn't work in IE8 and lower.
The text was updated successfully, but these errors were encountered: