You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Sven Meier (JIRA)" <ji...@apache.org> on 2015/04/01 21:54:54 UTC

[jira] [Resolved] (WICKET-5870) wicket-event-jquery.js: Wicket.Browser.isIE11() does not return boolean

     [ https://issues.apache.org/jira/browse/WICKET-5870?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sven Meier resolved WICKET-5870.
--------------------------------
       Resolution: Fixed
    Fix Version/s: 6.20.0
                   7.0.0

Thanks!

> wicket-event-jquery.js: Wicket.Browser.isIE11() does not return boolean
> -----------------------------------------------------------------------
>
>                 Key: WICKET-5870
>                 URL: https://issues.apache.org/jira/browse/WICKET-5870
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 7.0.0-M5
>            Reporter: Timo Schmidt
>            Assignee: Sven Meier
>            Priority: Trivial
>             Fix For: 7.0.0, 6.20.0
>
>
> In wicket-event-jquery.js starting with Line 115 the method isIE11 does not return a boolean.
> Current implementation:
> var isTrident = userAgent.indexOf("Trident");
> var is11 = userAgent.indexOf("rv:11");
> Fix:
> var isTrident = userAgent.indexOf("Trident") > -1;
> var is11 = userAgent.indexOf("rv:11") > -1;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)