]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/static/js/view_contacts.js
Added stub renderers for Calendar and Contacts rooms
[citadel.git] / webcit-ng / static / js / view_contacts.js
diff --git a/webcit-ng/static/js/view_contacts.js b/webcit-ng/static/js/view_contacts.js
new file mode 100644 (file)
index 0000000..d6503ea
--- /dev/null
@@ -0,0 +1,12 @@
+// This module handles the view for "address book" rooms.
+//
+// Copyright (c) 2016-2023 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, or
+// disclosure are subject to the GNU General Public License v3.
+
+
+// RENDERER FOR THIS VIEW
+function view_render_contacts() {
+       document.getElementById("ctdl-main").innerHTML = `STUB RENDERER FOR ADDRESS BOOK`;
+}