diff options
Diffstat (limited to '')
-rw-r--r-- | dist/js/lib/themes.js | 8 | ||||
-rw-r--r-- | dist/js/meals.js | 8 | ||||
-rw-r--r-- | dist/js/messaging.js | 8 |
3 files changed, 15 insertions, 9 deletions
diff --git a/dist/js/lib/themes.js b/dist/js/lib/themes.js index 8917aaa..14ef436 100644 --- a/dist/js/lib/themes.js +++ b/dist/js/lib/themes.js @@ -15,6 +15,7 @@ const THEME_COLOR_SCHEMES = { "color-header-span": "rgba(255, 255, 255, 1)", "color-text": "rgba(0, 0, 0, 1)", + "color-text-light": "rgba(97, 97, 97, 1)", "color-label-text": "rgba(158, 158, 158, 1)", "color-table-hover": "rgba(242, 242, 242, 0.5)", @@ -42,13 +43,14 @@ const THEME_COLOR_SCHEMES = { "color-header-bold": "rgba(255, 255, 255, 1)", "color-header-span": "rgba(255, 255, 255, 1)", - "color-text": "rgba(255, 255, 255, 1)", + "color-text": "rgba(189, 189, 189, 1)", + "color-text-light": "rgba(160, 160, 160, 1)", "color-label-text": "rgba(158, 158, 158, 1)", "color-table-hover": "rgba(70, 70, 70, 0.5)", "color-sidenav-background": "rgba(31, 31, 31, 1)", - "color-sidenav-text": "rgba(255, 255, 255, 1)", - "color-sidenav-header": "rgba(255, 255, 255, 0.54)", + "color-sidenav-text": "rgba(189, 189, 189, 1)", + "color-sidenav-header": "rgba(189, 189, 189, 0.54)", "color-divider": "rgba(80, 80, 80, 1)", "color-btn-flat": "rgba(178, 178, 178, 1)", diff --git a/dist/js/meals.js b/dist/js/meals.js index e9b3af8..78de032 100644 --- a/dist/js/meals.js +++ b/dist/js/meals.js @@ -4,10 +4,10 @@ async function checkLogin() { localforage.getItem("logged_in_lopolis").then((value) => { if (value != true) { $("#meals-container").hide(); - $("#meals-login").show(); + $("#meals-login-container").show(); } else { $("#meals-container").show(); - $("#meals-login").hide(); + $("#meals-login-container").hide(); loadMeals(); } }).catch((err) => { @@ -240,8 +240,8 @@ function lopolisLogout() { async function lopolisLogin() { setLoading(true); - var usernameEl = $("#meals_username"); - var passwordEl = $("#meals_password"); + var usernameEl = $("#meals-username"); + var passwordEl = $("#meals-password"); $.ajax({ url: API_ENDPOINT+"gettoken", crossDomain: true, diff --git a/dist/js/messaging.js b/dist/js/messaging.js index 5426c7b..f829cd5 100644 --- a/dist/js/messaging.js +++ b/dist/js/messaging.js @@ -93,7 +93,11 @@ function populateAutocomplete() { $(document).ready(function () { if (window.location.hash.length > 1 && !window.location.hash.substring(1).startsWith("beziapp")) { - $("#full-name").val(decodeURIComponent(window.location.hash.substring(1))); + var hashValue = decodeURIComponent(window.location.hash.substring(1)); + $("#full-name").val(hashValue); + if (hashValue in directory) { + $("#msg-send").removeAttr("disabled"); + } $("#beziapp-new-message").modal(); $("#beziapp-new-message").modal("open"); } @@ -346,7 +350,7 @@ function displayData(messageType) { </button> <p> </div> - <div class="card-action"> + <div class="card-action general-text"> <a onclick="deleteMsg('${filterXSS(element["id"])}')"> <i class="material-icons">delete</i> </a> |