Problem with ui.pack.js in line 9774
------------------------------------

                 Key: RF-5202
                 URL: https://jira.jboss.org/jira/browse/RF-5202
             Project: RichFaces
          Issue Type: Bug
    Affects Versions: 3.2.2
            Reporter: marcin -


In richfaces-ui-3.2.2.GA.jar in directory org/richfaces/ we can find ui.pack.js.
It seems that something is wrong in line 9774.
Now we this line look like:
(....'iframe"style="position: absolute; width: '+this.toolTipOffsetW+"px; 
height: "+this.toolTipOffsetH+"px; display: none;background-color:black; 
z-index: "+ +(E-1)+';"></iframe>');)
Problems are:
1. As we can see at the end we can find double '+'. 
2. Whats more to concatenate string ''' is used. But at the of the line '"'.

So I think this line should look like:
(....'iframe"style="position: absolute; width: '+this.toolTipOffsetW+'px; 
height: '+this.toolTipOffsetH+'px; display: none;background-color:black; 
z-index: '+(E-1)+';"></iframe>');)



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        
_______________________________________________
richfaces-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to