Browse Source

Re-added accidentally removed IE 8 workaround for uploads (#9179)

Change-Id: I8b45ee52b402b6fd9ead0905c4a42b284f0e7c99
tags/7.0.0.beta11
Anna Koskinen 11 years ago
parent
commit
bd2cb2fcdc
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      client/src/com/vaadin/client/ui/VUpload.java

+ 2
- 0
client/src/com/vaadin/client/ui/VUpload.java View File

@@ -155,6 +155,8 @@ public class VUpload extends SimplePanel {
private static native void setEncoding(Element form, String encoding)
/*-{
form.enctype = encoding;
// For IE8
form.encoding = encoding;
}-*/;

/** For internal use only. May be removed or replaced in the future. */

Loading…
Cancel
Save