Browse Source

Update modernie property provider to recognize IE11 on WP 8.1 Update (#14376)

Change-Id: I8df8260bf875dd2a3cf974885bde8b473f4951a5
tags/7.3.0.rc1
Juho Nurminen 9 years ago
parent
commit
a2bf94616f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      client/src/com/vaadin/Vaadin.gwt.xml

+ 1
- 1
client/src/com/vaadin/Vaadin.gwt.xml View File

@@ -68,7 +68,7 @@
<property-provider name="modernie"><![CDATA[
{
var ua = $wnd.navigator.userAgent;
if (ua.indexOf('IE') == -1 && ua.indexOf('Trident') != -1) { return 'yes'; }
if (ua.indexOf('MSIE') == -1 && ua.indexOf('Trident') != -1) { return 'yes'; }
return 'none';
}
]]></property-provider>

Loading…
Cancel
Save