You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VaadinBrowserSpecificOverrides.gwt.xml 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <module>
  2. <!-- This GWT module defines the browser specific overrides used by Vaadin -->
  3. <!-- Hint for WidgetSetBuilder not to automatically update the file -->
  4. <!-- WS Compiler: manually edited -->
  5. <!-- Fall through to this rule for everything but IE -->
  6. <replace-with
  7. class="com.vaadin.client.ui.upload.UploadIFrameOnloadStrategy">
  8. <when-type-is
  9. class="com.vaadin.client.ui.upload.UploadIFrameOnloadStrategy" />
  10. </replace-with>
  11. <replace-with
  12. class="com.vaadin.client.ui.upload.UploadIFrameOnloadStrategyIE">
  13. <when-type-is
  14. class="com.vaadin.client.ui.upload.UploadIFrameOnloadStrategy" />
  15. <any>
  16. <when-property-is name="user.agent" value="ie8" />
  17. </any>
  18. </replace-with>
  19. <!-- Fall through to this rule for everything but IE -->
  20. <replace-with class="com.vaadin.client.ui.draganddropwrapper.VDragAndDropWrapper">
  21. <when-type-is class="com.vaadin.client.ui.draganddropwrapper.VDragAndDropWrapper" />
  22. </replace-with>
  23. <replace-with class="com.vaadin.client.ui.draganddropwrapper.VDragAndDropWrapperIE">
  24. <when-type-is class="com.vaadin.client.ui.draganddropwrapper.VDragAndDropWrapper" />
  25. <any>
  26. <when-property-is name="user.agent" value="ie8" />
  27. </any>
  28. </replace-with>
  29. <!-- Fall through to this rule for everything but IE -->
  30. <replace-with class="com.vaadin.client.LayoutManager">
  31. <when-type-is class="com.vaadin.client.LayoutManager" />
  32. </replace-with>
  33. <replace-with class="com.vaadin.client.LayoutManagerIE8">
  34. <when-type-is class="com.vaadin.client.LayoutManager" />
  35. <any>
  36. <when-property-is name="user.agent" value="ie8" />
  37. </any>
  38. </replace-with>
  39. </module>