Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'js/views/calendarspopoverview.js')
-rw-r--r--js/views/calendarspopoverview.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/js/views/calendarspopoverview.js b/js/views/calendarspopoverview.js
new file mode 100644
index 000000000..f2693cbb2
--- /dev/null
+++ b/js/views/calendarspopoverview.js
@@ -0,0 +1,30 @@
+/**
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * ownCloud - Mail
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+define(function(require) {
+ 'use strict';
+
+ var Marionette = require('marionette');
+ var CalendarView = require('views/calendarview');
+
+ return Marionette.CollectionView.extend({
+ childView: CalendarView,
+ tagName: 'ul'
+ });
+});