[Hypercontent-users] SSL and HTMLArea
Brought to you by:
alexvigdor
From: Pete B. <pb...@ia...> - 2004-03-22 16:21:13
|
Alex, There is a documented problem using HTMLArea behind SSL. When using IE you will get a mixed content message each time you edit. Fortunately there is an easy patch. In htmlarea.js add: // create the IFRAME var iframe = document.createElement("iframe"); iframe.src ="javascript:void(0);"; <<<<<<<<< new line htmlarea.appendChild(iframe); and in popup/insert_image.html add: <iframe name="ipreview" id="ipreview" frameborder="0" style="border : 1px solid gray;" height="200" width="300" src="javascript:void(0)"> </iframe> (this line is towards the end of the file) Pete Boysen Iowa State University pb...@ia... (515)294-6663 Ames, Iowa 50011 http://www.public.iastate.edu/~pboysen |