mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-03 15:46:23 -07:00
Merge pull request #62 from gochan-org/deepsource-fix-ab5c995a
Replace `==`/`!=` with `===`/`!==`
This commit is contained in:
commit
eda67081fa
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