Thank you for reporting this bug. We will make it our priority to review this report.
-
Sencha User
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:
Code:
simpleStatement(sw, "chrome", "chrome");
with
Code:
sw.println("if (ua.indexOf('chrome') != -1 && ua.indexOf('chromeframe') == -1) {");
sw.indent();
sw.println("return 'chrome';");
sw.outdent();
sw.println("}");