Ticket #328 (closed defect: fixed)
xinha iframe causes IE dialog "do you want to display nonsecure items?"
| Reported by: | joe-xinha@… | Owned by: | gogo |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Xinha Core | Version: | |
| Severity: | normal | Keywords: | IE nonsecure iframe |
| Cc: |
Description
I am using IE6 and Xinha nightly from 06/08/05 on a https: site. When loading the page in IE, I get the "Security Information" dialog box. Everything works if you click yes, but it is obviously an issue for end users.
I googled a quick solution at http://www.htmlarea.com/cgi-bin/forum/gforum.cgi?post=20714 :
var iframe = document.createElement("iframe"); iframe.src = this.popupURL("blank.html"); before htmlarea.appendChild(iframe). Also- 1) popups/blank.html is not "<html></html>" but rather "<html><body></body></html>".
2) if you want Spell Checker plugin to stop showing this error message as well you need: 2.1 cp popups/blank.html plugins/SpellChecker/ 2.2 in plugins/SpellChecker/spell-check-ui.html replace the line: <iframe src="about:blank" width="100%" height="100%" with <iframe src="blank.html" width="100%" height="100%"
