>[*] 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?
:-)
|
- Re: [Dynapi-Dev] note: Doug Melvin
- Re: [Dynapi-Dev] note: Richard Bennett
- Re[2]: [Dynapi-Dev] note: Robert Rainwater
- Re: [Dynapi-Dev] note: Scott Andrew LePera
- Re: [Dynapi-Dev] note: Doug Melvin
- Re[2]: [Dynapi-Dev] note: Robert Rainwater
- Re: Re[2]: [Dynapi-Dev] note: Richard Bennett
- Re: Re[2]: [Dynapi-Dev] note... Dougal Campbell
- Re: Re[2]: [Dynapi-Dev] ... Dougal Campbell
- Re: Re[2]: [Dynapi-Dev] ... Richard Bennett
- Re: Re[2]: [Dynapi-Dev] ... Doug Melvin