Replaced == with ===.

This commit is contained in:
tastytea 2019-05-29 01:37:07 +02:00
parent d5bef5afa7
commit 491a03f80d
Signed by untrusted user: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name Mastodon CW toggle // @name Mastodon CW toggle
// @description Toggles the visibility of all statuses with content warnings. // @description Toggles the visibility of all statuses with content warnings.
// @version 2019.05.28.4 // @version 2019.05.29.1
// @author tastytea // @author tastytea
// @copyright 2019, tastytea (https://tastytea.de/) // @copyright 2019, tastytea (https://tastytea.de/)
// @license GPL-3.0-only // @license GPL-3.0-only
@ -44,10 +44,10 @@ function add_button()
{ {
// If there is no element named “column-1”, use the footer. // If there is no element named “column-1”, use the footer.
var root = document.getElementsByClassName("column-1")[0]; var root = document.getElementsByClassName("column-1")[0];
if (root == null) if (root === null)
{ {
root = document.getElementsByClassName("footer")[0]; root = document.getElementsByClassName("footer")[0];
if (root == null) if (root === null)
{ {
return; return;
} }