[ 
https://issues.apache.org/jira/browse/TOMAHAWK-1642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13477936#comment-13477936
 ] 

Alex Landini commented on TOMAHAWK-1642:
----------------------------------------

The affected code is in 
src\main\javascript\oam.custom.schedule.javascript\domLib.js
row 53:
var domLib_isIE = (!domLib_isKHTML && !domLib_isOpera && 
(domLib_userAgent.indexOf('msie 5') != -1 || domLib_userAgent.indexOf('msie 6') 
!= -1 || domLib_userAgent.indexOf('msie 7') != -1));

a solution colud be:
var domLib_isIE = (!domLib_isKHTML && !domLib_isOpera && 
(domLib_userAgent.indexOf('msie 5') != -1 || domLib_userAgent.indexOf('msie 6') 
!= -1 || domLib_userAgent.indexOf('msie 7') != -1  || 
domLib_userAgent.indexOf('msie 7') != -1));

or a better solution would be if this variables doesn't care of IE specific 
version :
var domLib_isIE = (!domLib_isKHTML && !domLib_isOpera && 
domLib_userAgent.indexOf('msie') != -1 );
                
> t:scheduler tooltip is not rendered on IE8
> ------------------------------------------
>
>                 Key: TOMAHAWK-1642
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1642
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>          Components: Schedule
>    Affects Versions: 1.1.13
>            Reporter: Alex Landini
>
> t:scheduler tooltip is not rendered on IE8

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to