summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrstular <rok@stular.eu>2020-05-14 11:26:31 +0200
committerrstular <rok@stular.eu>2020-05-14 11:26:31 +0200
commit9af54a942c1ff6f6395693a3510a69518a922f17 (patch)
tree42f3bf6fdb3a50b656e4175bb0fb49a4febc74cd
parentMerge branch 'dev' of github.com:beziapp/beziapp.github.io into dev (diff)
downloadbeziapp-9af54a942c1ff6f6395693a3510a69518a922f17.tar
beziapp-9af54a942c1ff6f6395693a3510a69518a922f17.tar.gz
beziapp-9af54a942c1ff6f6395693a3510a69518a922f17.tar.bz2
beziapp-9af54a942c1ff6f6395693a3510a69518a922f17.tar.lz
beziapp-9af54a942c1ff6f6395693a3510a69518a922f17.tar.xz
beziapp-9af54a942c1ff6f6395693a3510a69518a922f17.tar.zst
beziapp-9af54a942c1ff6f6395693a3510a69518a922f17.zip
-rw-r--r--js/messaging.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/messaging.js b/js/messaging.js
index 44c279e..60072f0 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.replace("_", "|")
+ "a": id.replace(/_/g, "|")
},
dataType: "json",
cache: false,
@@ -224,7 +224,7 @@ async function deleteMsg(id) {
"u": username,
"p": password,
"m": "izbrisisporocilo",
- "a": id.replace("_", "|")
+ "a": id.replace(/_/g, "|")
},
dataType: "json",
cache: false,
@@ -281,9 +281,9 @@ function displayMessage(id, data) {
${datatodecrypt}
</div>
`
- $(`#msg_body-${id.replace("|", "_")}`).html(msgcontent);
+ $(`#msg_body-${id.replace(/\|/g, "_")}`).html(msgcontent);
} else {
- $(`#msg_body-${id.replace("|", "_")}`).html(filterXSS(data["telo"]));
+ $(`#msg_body-${id.replace(/\|/g, "_")}`).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"]).replace("|", "_")}">
+ <p id="msg_body-${filterXSS(element["id"]).replace(/\|/g, "_")}">
<button
class="btn waves-effect waves-light"
onclick="loadMsg('${filterXSS(element["id"])}')"