>[*] Old IE5.5 event fix, which used a javascript:null as background image for empty layers, had to be
>changed into using a real transparent gif which is supplied with the standard distribution, due
>to that javascript:null image causing a warning when using DynAPI via a secure server (https://)
 
this is not entirly true.
I fixed this in our app by making:
 if (is.ie55 && this.bgImage==null && this.html==null) s+=' background-image:url(javascript:null);'
into:
  if (is.ie55 && this.bgImage==null && this.html==null) s+=' background-image:url(none);'
The error went away (HTTPS:// secure error that is)
 
Somehow I think this is a little easier than loading an actual image.
If someone can prove that this fix does not work you better damn well tell be before we deploy this $45m application..
 
please?
:-)

Reply via email to