aboutsummaryrefslogtreecommitdiffstats
path: root/lib/caldav/request/calendar_query.js
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2012-07-06 14:52:13 -0700
committerJames Lal <james@lightsofapollo.com>2012-07-06 14:52:13 -0700
commit684ec0e95608e3212d8dac1b2c7489cf7e5c3078 (patch)
tree15ff517b5715f4f32f44a70c2698caeb9426ee28 /lib/caldav/request/calendar_query.js
parentfa1bc078c2953c4d81d7c5c17e4f3a4c0e3febeb (diff)
downloadjsCalDAV-684ec0e95608e3212d8dac1b2c7489cf7e5c3078.tar.gz
Reworked requests to take connection object and options
Diffstat (limited to 'lib/caldav/request/calendar_query.js')
-rw-r--r--lib/caldav/request/calendar_query.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/caldav/request/calendar_query.js b/lib/caldav/request/calendar_query.js
index 7b64d3f..6fcf74d 100644
--- a/lib/caldav/request/calendar_query.js
+++ b/lib/caldav/request/calendar_query.js
@@ -9,10 +9,10 @@
*
* Defaults to Depth of 1.
*
- * @param {String} url location to make request.
+ * @param {CalDav.Connection} connection connection object.
* @param {Object} options options for calendar query.
*/
- function CalendarQuery(url, options) {
+ function CalendarQuery(options) {
Propfind.apply(this, arguments);
this.xhr.headers['Depth'] = this.depth || 1;