merge vendor js
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
d526969a68
commit
3eaf6626f8
1 changed files with 7 additions and 0 deletions
7
core/vendor/core.js
vendored
7
core/vendor/core.js
vendored
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue