On Sat, Jan 30, 2010 at 09:49, Jim Hunter wrote:
> I found another issue with regard to background color in a decorator, but
> was able to add a little code that seems to have fixed that for IE8. I don't
> develop in IE so it was a surprise to see these issues when I tested it.
>
IE8 is still pr
Thanks, but I didn't copy & paste it, I typed it and the mistake was mine.
It does have the double &&. The code is running in a VM and my email is
outside of that and cpy/paste just wasn't working at that time. Any idea why
it isn't getting called until sometime into the program and it seems to wor
If you correctly copy-pasted this it seems that there is an error:
Replace:
else if (navigator.cpuClass &7 /MSIE\s+([^\);]+)(\)|;)/.test(agent))
With:
else if (navigator.cpuClass && /MSIE\s+([^\);]+)(\)|;)/.test(agent))
Cheers
- Sebastian
2010/1/29 Jim Hunter :
> In the middle of running my ap
In the middle of running my app in IE8, I am getting an "Error Object
expected" in qx.bom.client.Engine on the following line:
else if (navigator.cpuClass &7 /MSIE\s+([^\);]+)(\)|;)/.test(agent))
I'm not sure which part of the line the failure occurs. Also, I would think
this is code that would o