Explorar el Código

Fix MKCOL for IE11 as well

Using https://github.com/owncloud/core/pull/22274 we have to patch the
iedavclient.js as well.
tags/v9.1.0beta1
Roeland Jago Douma hace 8 años
padre
commit
19347187d8
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. 6
    1
      core/js/files/iedavclient.js

+ 6
- 1
core/js/files/iedavclient.js Ver fichero

@@ -39,7 +39,12 @@
for(ii in headers) {
xhr.setRequestHeader(ii, headers[ii]);
}
xhr.send(body);

if (body === undefined) {
xhr.send();
} else {
xhr.send(body);
}

return new Promise(function(fulfill, reject) {


Cargando…
Cancelar
Guardar