-
13 Dec 2012 5:21 AM #1
gxt 3 detects ie + chromeframe as chrome
gxt 3 detects ie + chromeframe as chrome
Hello,
GXT3 detects Internet Explorer as Chrome/Safari if ChromeFrame Addon is installed, even if chromeframe is not active for the site (no meta or http header to toggle chromeframe).
Here is the fix.
in class com.sencha.gxt.core.rebind.useragent.UserAgentPropertyGenerator
replace:withCode:simpleStatement(sw, "chrome", "chrome");
Code:sw.println("if (ua.indexOf('chrome') != -1 && ua.indexOf('chromeframe') == -1) {"); sw.indent(); sw.println("return 'chrome';"); sw.outdent(); sw.println("}");
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote