]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix for #3285 - Remove IE8 fixes from PortalWidgetSet
authorArtur Signell <artur.signell@itmill.com>
Fri, 4 Sep 2009 13:24:27 +0000 (13:24 +0000)
committerArtur Signell <artur.signell@itmill.com>
Fri, 4 Sep 2009 13:24:27 +0000 (13:24 +0000)
svn changeset:8671/svn branch:6.1

src/com/vaadin/portal/gwt/PortalDefaultWidgetSet.gwt.xml

index fcc38fb66f7faad5e8694046e97527ff1a8f0dc4..3e9527788d9e89a8599e71097c7ece4cb1faeb3c 100644 (file)
@@ -1,36 +1,7 @@
 <module>
-       <!-- Inherit the DefaultWidgetSet -->
+       <!-- Inherit the SamplerWidgetSet -->
        <inherits name="com.vaadin.demo.sampler.gwt.SamplerWidgetSet" />
 
-       <!--
-               Workaround for IE8 issues. To be removed when a new GWT version
-               arrives
-       -->
-
-       <define-property name="vaadin.is.ie8" values="true,false" />
-
-       <property-provider name="vaadin.is.ie8"><![CDATA[
-       var ua = navigator.userAgent.toLowerCase();
-
-               if (ua.indexOf("msie") != -1) {
-               if (document.documentMode >= 8) {
-                       return "true";
-                       }
-               }
-        return "false";
-          
-       ]]></property-provider>
-
-       <replace-with class="com.google.gwt.user.client.ui.impl.PopupImpl">
-               <when-type-is class="com.google.gwt.user.client.ui.impl.PopupImpl" />
-               <when-property-is name="vaadin.is.ie8" value="true" />
-       </replace-with>
-       
-       <replace-with class="com.google.gwt.user.client.ui.impl.ClippedImageImpl">
-               <when-type-is class="com.google.gwt.user.client.ui.impl.ClippedImageImpl" />
-               <when-property-is name="vaadin.is.ie8" value="true" />
-       </replace-with>
-       
        <!-- Entry point -->
        <entry-point class="com.vaadin.portal.gwt.client.PortalDefaultWidgetSet"/>