From 3f33799a107bf88aa8378fb641322b9d128fcc71 Mon Sep 17 00:00:00 2001 From: rstular Date: Thu, 14 May 2020 11:22:29 +0200 Subject: Bug fix ("|" isn't valid in a selector) --- js/chats.js | 2 +- js/messaging.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/js/chats.js b/js/chats.js index a240cce..3073ac9 100644 --- a/js/chats.js +++ b/js/chats.js @@ -344,7 +344,7 @@ async function setRecipient(name = null) { sogovornik = name; currentlyChattingWith = directory[name]; - $("#chat-mustSelectRecipient").prop("hidden", true); + $("#chat-mustSelectRecipient").hide(); updateSendButton(); clearMessages(); // <-- do when recipient selected diff --git a/js/messaging.js b/js/messaging.js index 187df17..44c279e 100644 --- a/js/messaging.js +++ b/js/messaging.js @@ -181,7 +181,7 @@ async function loadMsg(id) { "u": username, "p": password, "m": "fetchsporocilo", - "a": id + "a": id.replace("_", "|") }, dataType: "json", cache: false, @@ -224,7 +224,7 @@ async function deleteMsg(id) { "u": username, "p": password, "m": "izbrisisporocilo", - "a": id + "a": id.replace("_", "|") }, dataType: "json", cache: false, @@ -281,9 +281,9 @@ function displayMessage(id, data) { ${datatodecrypt} ` - $(`#msg_body-${id}`).html(msgcontent); + $(`#msg_body-${id.replace("|", "_")}`).html(msgcontent); } else { - $(`#msg_body-${id}`).html(filterXSS(data["telo"])); + $(`#msg_body-${id.replace("|", "_")}`).html(filterXSS(data["telo"])); } } @@ -300,7 +300,7 @@ function displayData() { ${filterXSS(element["id"])} -

+