merge vendor js

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2017-09-18 14:08:30 +02:00
parent d26951beb4
commit 869e06fe69
No known key found for this signature in database
GPG Key ID: CBCA68FBAEBF98C9
1 changed files with 7 additions and 0 deletions

7
core/vendor/core.js vendored
View File

@ -5551,6 +5551,9 @@ dav.Client.prototype = {
' <d:prop>\n';
for(var ii in properties) {
if (!properties.hasOwnProperty(ii)) {
continue;
}
var property = this.parseClarkNotation(properties[ii]);
if (this.xmlNamespaces[property.namespace]) {
@ -5596,6 +5599,10 @@ dav.Client.prototype = {
' <d:prop>\n';
for(var ii in properties) {
if (!properties.hasOwnProperty(ii)) {
continue;
}
var property = this.parseClarkNotation(ii);
var propName;
var propValue = properties[ii];