Skip to content
Snippets Groups Projects
Unverified Commit 3eaf6626 authored by Robin Appelman's avatar Robin Appelman
Browse files

merge vendor js


Signed-off-by: default avatarRobin Appelman <robin@icewind.nl>
parent d526969a
No related branches found
No related tags found
No related merge requests found
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment