You are not logged in.
Pages: 1
Hi,
Sometimes I find that alt-tabbing between a page with Xinha on in IE, and another window will eventually cause a JavaScript error to occur - it seems to be caused by it reaching:
else if ( keyEvent )
{
this.mozKey( ev, keyEvent );
}
to fix it I've changed it to:
else if ( keyEvent && this.is_gecko )
{
this.mozKey( ev, keyEvent );
}
Has anyone else found this problem in IE? In Mozilla Firefox it's fine.
David G. Paul
[url]http://www.newearthonline.co.uk[/url]
Offline
thanks, thought it was something like that - couldn't remember exactly what
I remember having fiddeled to get it right when I made the change on my local install due to trying it as a function first :s
David G. Paul
[url]http://www.newearthonline.co.uk[/url]
Offline
Pages: 1