mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-03 19:56:22 -07:00
Replace ==
/!=
with ===
/!==
This commit is contained in:
parent
b774433065
commit
958786de37
1 changed files with 1 additions and 1 deletions
|
@ -412,7 +412,7 @@ export function quote(no) {
|
|||
let msgboxID = "postmsg";
|
||||
|
||||
let msgbox = document.getElementById("qr" + msgboxID);
|
||||
if(msgbox == null)
|
||||
if(msgbox === null)
|
||||
msgbox = document.getElementById(msgboxID);
|
||||
let selected = selectedText();
|
||||
let lines = selected.split("\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue