]> source.dussan.org Git - vaadin-framework.git/commitdiff
Update modernie property provider to recognize IE11 on WP 8.1 Update (#14376)
authorJuho Nurminen <juho@vaadin.com>
Thu, 14 Aug 2014 14:11:38 +0000 (17:11 +0300)
committerVaadin Code Review <review@vaadin.com>
Fri, 15 Aug 2014 09:04:42 +0000 (09:04 +0000)
Change-Id: I8df8260bf875dd2a3cf974885bde8b473f4951a5

client/src/com/vaadin/Vaadin.gwt.xml

index 711729f64f31414fdeabc075d5cc48412ab5a36c..aad0563975a4e01d673ca49fdc68375e37c177e2 100644 (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>