From c531b85798fde63320e0f6dd21cabc199cbb62d3 Mon Sep 17 00:00:00 2001 From: sijanec Date: Wed, 20 May 2020 21:20:44 +0200 Subject: forgot i'm not doing anything --- dist/js/messaging.js | 786 +++++++++------------------------------------------ 1 file changed, 139 insertions(+), 647 deletions(-) (limited to 'dist/js/messaging.js') diff --git a/dist/js/messaging.js b/dist/js/messaging.js index 883ab64..762db73 100644 --- a/dist/js/messaging.js +++ b/dist/js/messaging.js @@ -1,648 +1,140 @@ -const ENCRYPTED_MESSAGE_REGEX = /(\S+?)/; - -// "Global" object for name directory and messages -var directory = null; -var messages = { - "0": [], - "1": [], - "2": [] -} -var current_tab = 0; - -async function checkLogin() { - localforage.getItem("logged_in").then(function (value) { - // This code runs once the value has been loaded - // from the offline store. - if (value !== true) { - window.location.replace("/index.html"); - } - }).catch(function (err) { - // This code runs if there were any errors - console.log(err); - }); -} - -// -----------HTML HELPERS----------- -function htmlEncode(value) { - // Create a in-memory element, set its inner text (which is automatically encoded) - // Then grab the encoded contents back out. The element never exists on the DOM. - return $("