From 41e4e2f22b813a3c235008241cc93f13d56c6162 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 6 Jun 2019 02:19:54 +0200 Subject: [PATCH] Changed style from const to let. --- fediverse/mastodon_cw_toggle.user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fediverse/mastodon_cw_toggle.user.js b/fediverse/mastodon_cw_toggle.user.js index 5a7c446..c7c70da 100644 --- a/fediverse/mastodon_cw_toggle.user.js +++ b/fediverse/mastodon_cw_toggle.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Mastodon CW toggle // @description Adds a button to toggle the visibility of all statuses with content warnings on status-pages and profile-pages. -// @version 2019.06.06.1 +// @version 2019.06.06.2 // @author tastytea // @copyright 2019, tastytea (https://tastytea.de/) // @license GPL-3.0-only @@ -26,7 +26,7 @@ function toggle() { continue; } - const style = status.getAttribute("style"); + let style = status.getAttribute("style"); if (style.search("none") > -1) { style = style.replace("none", "block");