summaryrefslogtreecommitdiffstats
path: root/client/src/main/resources/com/vaadin
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2016-08-17 23:02:37 +0300
committerVaadin Code Review <review@vaadin.com>2016-08-18 11:03:05 +0000
commit0081286c8d05c3751803181230092bd4b1e769f7 (patch)
tree654556f869e08289a2b3099174c2f4c1e759a37a /client/src/main/resources/com/vaadin
parentc9f95347c3d601ab45d49283c1463271f3fc66ab (diff)
downloadvaadin-framework-0081286c8d05c3751803181230092bd4b1e769f7.tar.gz
vaadin-framework-0081286c8d05c3751803181230092bd4b1e769f7.zip
Remove IE8-IE10 client side code
Change-Id: I2ca0b41c3cc2ed851646ced2e0693a93b1853c95
Diffstat (limited to 'client/src/main/resources/com/vaadin')
-rw-r--r--client/src/main/resources/com/vaadin/Vaadin.gwt.xml10
-rw-r--r--client/src/main/resources/com/vaadin/VaadinBrowserSpecificOverrides.gwt.xml47
2 files changed, 1 insertions, 56 deletions
diff --git a/client/src/main/resources/com/vaadin/Vaadin.gwt.xml b/client/src/main/resources/com/vaadin/Vaadin.gwt.xml
index 35b225560e..739225e594 100644
--- a/client/src/main/resources/com/vaadin/Vaadin.gwt.xml
+++ b/client/src/main/resources/com/vaadin/Vaadin.gwt.xml
@@ -13,8 +13,6 @@
<inherits name="com.google.gwt.logging.Logging" />
<set-property name="gwt.logging.enabled" value="TRUE" />
- <inherits name="com.vaadin.VaadinBrowserSpecificOverrides" />
-
<source path="client" />
<source path="shared" />
@@ -42,8 +40,7 @@
<!-- Use the new cross site linker to get a nocache.js without document.write -->
<add-linker name="xsiframe" />
- <!-- Remove IE6/IE7 permutation as they are not supported -->
- <set-property name="user.agent" value="ie8,ie9,ie10,gecko1_8,safari" />
+ <set-property name="user.agent" value="gecko1_8,safari" />
<!-- Pointer event support -->
<define-property name="modernie" values="none,yes" />
@@ -75,11 +72,6 @@
</none>
</replace-with>
- <replace-with class="com.vaadin.client.event.PointerEventSupportImplIE10">
- <when-type-is class="com.vaadin.client.event.PointerEventSupportImpl" />
- <when-property-is value="ie10" name="user.agent" />
- </replace-with>
-
<replace-with
class="com.vaadin.client.communication.DefaultConnectionStateHandler">
<when-type-is
diff --git a/client/src/main/resources/com/vaadin/VaadinBrowserSpecificOverrides.gwt.xml b/client/src/main/resources/com/vaadin/VaadinBrowserSpecificOverrides.gwt.xml
deleted file mode 100644
index ceedde50a6..0000000000
--- a/client/src/main/resources/com/vaadin/VaadinBrowserSpecificOverrides.gwt.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<module>
- <!-- This GWT module defines the browser specific overrides used by Vaadin -->
-
- <!-- Hint for WidgetSetBuilder not to automatically update the file -->
- <!-- WS Compiler: manually edited -->
-
- <!-- Fall through to this rule for everything but IE -->
- <replace-with
- class="com.vaadin.client.ui.upload.UploadIFrameOnloadStrategy">
- <when-type-is
- class="com.vaadin.client.ui.upload.UploadIFrameOnloadStrategy" />
- </replace-with>
-
- <replace-with
- class="com.vaadin.client.ui.upload.UploadIFrameOnloadStrategyIE">
- <when-type-is
- class="com.vaadin.client.ui.upload.UploadIFrameOnloadStrategy" />
- <any>
- <when-property-is name="user.agent" value="ie8" />
- </any>
- </replace-with>
-
- <!-- Fall through to this rule for everything but IE -->
- <replace-with class="com.vaadin.client.ui.VDragAndDropWrapper">
- <when-type-is class="com.vaadin.client.ui.VDragAndDropWrapper" />
- </replace-with>
-
- <replace-with class="com.vaadin.client.ui.VDragAndDropWrapperIE">
- <when-type-is class="com.vaadin.client.ui.VDragAndDropWrapper" />
- <any>
- <when-property-is name="user.agent" value="ie8" />
- </any>
- </replace-with>
-
- <!-- Fall through to this rule for everything but IE -->
- <replace-with class="com.vaadin.client.LayoutManager">
- <when-type-is class="com.vaadin.client.LayoutManager" />
- </replace-with>
-
- <replace-with class="com.vaadin.client.LayoutManagerIE8">
- <when-type-is class="com.vaadin.client.LayoutManager" />
- <any>
- <when-property-is name="user.agent" value="ie8" />
- </any>
- </replace-with>
-
-</module>