We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad6fa54 commit d1880a1Copy full SHA for d1880a1
elements/webdav.js
@@ -512,10 +512,11 @@ apf.webdav = function(struct, tagName){
512
* see {@link teleport.webdav.method.getProperties}
513
*
514
* @param {String} sPath Path to the resource on the WebDAV server
515
+ * @param {Function} callback Function to execute when the request was successful
516
* @type {void}
517
*/
- this.list = function(sPath) {
518
- return this.getProperties(sPath, 0);
+ this.list = function(sPath, callback) {
519
+ return this.getProperties(sPath, 0, callback);
520
};
521
522
/**
0 commit comments