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
plugins/image-dialog/image-dilaog.js 153行
Firefox 里面 innerText 无效,要通过 textContent 取值,因此改成这样就可以了:
innerText
textContent
var json = uploadIframe.contentWindow.document.body.innerText; if (!json) { json = uploadIframe.contentWindow.document.body.textContent; }
The text was updated successfully, but these errors were encountered:
@jimmykuu fixed @v1.4.5
Sorry, something went wrong.
No branches or pull requests
plugins/image-dialog/image-dilaog.js 153行
Firefox 里面
innerText
无效,要通过textContent
取值,因此改成这样就可以了:The text was updated successfully, but these errors were encountered: