[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-1904) calendar.js has script error on IE 6&7
Chris Rudd (JIRA)
jira-events at lists.jboss.org
Thu Sep 6 00:36:10 EDT 2007
calendar.js has script error on IE 6&7
--------------------------------------
Key: JBSEAM-1904
URL: http://jira.jboss.com/jira/browse/JBSEAM-1904
Project: JBoss Seam
Issue Type: Bug
Components: JSF
Affects Versions: 2.0.0.BETA1
Reporter: Chris Rudd
Line 458 causes an error in IE 6 & 7
if( divs[i] != popupDiv && divs[i].style && !/\d/(divs[i].style.zIndex))
Im assuming the code is attempting to say if its not a number.. so this should be the equivelant (verified on both IE and Firefox)
if( divs[i] != popupDiv && divs[i].style && isNaN(parseInt(divs[i].style.zIndex)) )
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the seam-issues
mailing list