Skip to content

Commit

Permalink
Update adm.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lvmasterrj authored Feb 19, 2024
1 parent 4f8ba9f commit 210b97c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/adm.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function novaLinhaMensagens(dados) {
let miniTexto = dados.mensagem.slice(0, 50).trimEnd();
return `<tr class="linha-msg" id-msg="${dados.id}">
<td class="msg-data">${dayjs(dados.data).fromNow()}</td>
<td class="msg-texto ${dados.lida == 0 ? "": "lida"}" id-msg="${dados.id}" textoCompleto="${dados.mensagem}">${miniTexto + (dados.mensagem.length > miniTexto.length ? "..." : "")}</td>
<td class="msg-texto ${dados.lida == 0 ? "": "lida"}" id-msg="${dados.id}" textoCompleto="${dados.mensagem.replace(/"/g, "&quot;").replace(/'/, "&apos;")}">${miniTexto + (dados.mensagem.length > miniTexto.length ? "..." : "")}</td>
</tr>
`;
}
Expand Down Expand Up @@ -409,7 +409,7 @@ function removerMsgBD(idMsg) {
$("#corpo-tabela-mensagens").on("click", "tr", (e) => {

let idMsg = $(e.currentTarget).attr("id-msg");
let textoMsg = $(e.currentTarget).children("td.msg-texto").attr("textocompleto").replace(/"/g, "&quot;").replace(/'/, "&apos;");
let textoMsg = $(e.currentTarget).children("td.msg-texto").attr("textocompleto");
console.log(textoMsg);
$("#corpo-mensagem").val(textoMsg).attr("id-msg", idMsg);

Expand Down

0 comments on commit 210b97c

Please sign in to comment.