diff options
Diffstat (limited to 'lib/caldav/templates/index.js')
-rw-r--r-- | lib/caldav/templates/index.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/caldav/templates/index.js b/lib/caldav/templates/index.js new file mode 100644 index 0000000..4e06cfd --- /dev/null +++ b/lib/caldav/templates/index.js @@ -0,0 +1,13 @@ +(function(module, ns) { + + module.exports = { + CalendarData: ns.require('templates/calendar_data'), + CalendarFilter: ns.require('templates/calendar_filter') + }; + +}.apply( + this, + (this.Caldav) ? + [Caldav('templates'), Caldav] : + [module, require('../caldav')] +)); |