diff options
-rw-r--r-- | js/chats.js | 2 | ||||
-rw-r--r-- | 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} </div> ` - $(`#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() { <span class="card-title"> ${filterXSS(element["id"])} </span> - <p id="msg_body-${filterXSS(element["id"])}"> + <p id="msg_body-${filterXSS(element["id"]).replace("|", "_")}"> <button class="btn waves-effect waves-light" onclick="loadMsg('${filterXSS(element["id"])}')" |