diff options
author | rstular <rok@stular.eu> | 2020-05-16 23:41:52 +0200 |
---|---|---|
committer | rstular <rok@stular.eu> | 2020-05-16 23:41:52 +0200 |
commit | 48de23d1c8a36a0cd322d8a72ebdca2cb822cb24 (patch) | |
tree | e6a722a835c0c29609c50c67375fd943409ad7bf /js | |
parent | Merge branch 'dev' of github.com:beziapp/beziapp.github.io into dev (diff) | |
download | beziapp-48de23d1c8a36a0cd322d8a72ebdca2cb822cb24.tar beziapp-48de23d1c8a36a0cd322d8a72ebdca2cb822cb24.tar.gz beziapp-48de23d1c8a36a0cd322d8a72ebdca2cb822cb24.tar.bz2 beziapp-48de23d1c8a36a0cd322d8a72ebdca2cb822cb24.tar.lz beziapp-48de23d1c8a36a0cd322d8a72ebdca2cb822cb24.tar.xz beziapp-48de23d1c8a36a0cd322d8a72ebdca2cb822cb24.tar.zst beziapp-48de23d1c8a36a0cd322d8a72ebdca2cb822cb24.zip |
Diffstat (limited to 'js')
-rw-r--r-- | js/chats.js | 64 | ||||
-rw-r--r-- | js/meals.js | 14 |
2 files changed, 57 insertions, 21 deletions
diff --git a/js/chats.js b/js/chats.js index 5b4bbfd..daf10ab 100644 --- a/js/chats.js +++ b/js/chats.js @@ -367,27 +367,6 @@ function getUrlParameter(sParam) { return found_param; } -document.addEventListener("DOMContentLoaded", () => { - checkLogin(); - loadDirectory(); - updateSendButton(); - - // var receivedmessages = null; - - M.updateTextFields(); - - // Setup side menu - const menus = document.querySelectorAll(".side-menu"); - M.Sidenav.init(menus, { edge: "right", draggable: true }); - let elems = document.querySelectorAll(".modal"); - M.Modal.init(elems, {}); - - // Setup side modal - const modals = document.querySelectorAll(".side-modal"); - M.Sidenav.init(modals, { edge: "left", draggable: false }); - prepareAndStartFetchingMessages(); // just opens modal, as there is no recipient selected -}); - async function updateSendButton() { if ($("#msg-body").val().length == 0) { $("#msg-send").prop("disabled", true); @@ -480,3 +459,46 @@ async function renderMessages(gsecMsgList, whom, order = 1) { // order: 1=newest } } } + +function setupEventListeners() { + $("#chat-recipient-select-btn").click(() => { + setRecipient(); + }); + + $("#msg-send").click(() => { + sendMessage(); + }); + + $("#full-name").on("input", () => { + validateName(); + }); + + $("#msg-body").on("input", () => { + updateSendButton(); + }); +} + +document.addEventListener("DOMContentLoaded", () => { + + checkLogin(); + loadDirectory(); + + setupEventListeners(); + + updateSendButton(); + + // var receivedmessages = null; + + M.updateTextFields(); + + // Setup side menu + const menus = document.querySelectorAll(".side-menu"); + M.Sidenav.init(menus, { edge: "right", draggable: true }); + let elems = document.querySelectorAll(".modal"); + M.Modal.init(elems, {}); + + // Setup side modal + const modals = document.querySelectorAll(".side-modal"); + M.Sidenav.init(modals, { edge: "left", draggable: false }); + prepareAndStartFetchingMessages(); // just opens modal, as there is no recipient selected +});
\ No newline at end of file diff --git a/js/meals.js b/js/meals.js index f0d0266..0a5313a 100644 --- a/js/meals.js +++ b/js/meals.js @@ -341,9 +341,23 @@ async function setMenu(date, menu) { getToken(getMenus, [setMenus, choice]); } + +function setupEventListeners() { + $("#meals-login").click(() => { + lopolisLogin(); + }); + + $("#meals-logout").click(() => { + lopolisLogout(); + }); +} + // Initialization code document.addEventListener("DOMContentLoaded", async () => { checkLogin(); + + setupEventListeners(); + let coll_elem = document.querySelectorAll('.collapsible'); M.Collapsible.init(coll_elem, {}); |