From 8cd5aaed421d231450eb62c3c4deb80169851e49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Sat, 26 Nov 2011 15:17:17 +0100 Subject: [PATCH] Adding basic file-structure --- file/js/TimWolla.WCF.Chat.js | 15 +++++++++++++++ file/lib/page/ChatPage.class.php | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 file/js/TimWolla.WCF.Chat.js create mode 100644 file/lib/page/ChatPage.class.php diff --git a/file/js/TimWolla.WCF.Chat.js b/file/js/TimWolla.WCF.Chat.js new file mode 100644 index 0000000..2aac98f --- /dev/null +++ b/file/js/TimWolla.WCF.Chat.js @@ -0,0 +1,15 @@ +/** + * TimWolla.WCF.Chat + * + * @author Tim Düsterhus + * @copyright 2010-2011 Tim Düsterhus + * @license Creative Commons Attribution-NonCommercial-ShareAlike + * @package timwolla.wcf.chat + */ +if (typeof TimWolla == undefined) var TimWolla = {}; +if (typeof TimWolla.WCF == undefined) var TimWolla.WCF = {}; + +var TimWolla.WCF.Chat = {}; +(function ($, document) { + +})(jQuery, document); \ No newline at end of file diff --git a/file/lib/page/ChatPage.class.php b/file/lib/page/ChatPage.class.php new file mode 100644 index 0000000..7e46008 --- /dev/null +++ b/file/lib/page/ChatPage.class.php @@ -0,0 +1,15 @@ + + * @package timwolla.wcf.chat + * @subpackage page + */ +class ChatPage extends AbstractPage { + +}