[
https://issues.apache.org/jira/browse/WICKET-5870?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Martin Grigorov updated WICKET-5870:
------------------------------------
Fix Version/s: (was: 7.0.0)
7.0.0-M6
> 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: 6.20.0, 7.0.0-M6
>
>
> 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)