Mercurial > ec-userscripts
diff medium-popup-disable.user.js @ 108:2c4470b73ad9
Switch to semistandard
No more `;` at the start of line.
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 15 Jan 2023 23:24:03 +0900 |
parents | 9c8cde985caf |
children | ef21ef445fc6 |
line wrap: on
line diff
--- a/medium-popup-disable.user.js Sun Jan 15 23:15:45 2023 +0900 +++ b/medium-popup-disable.user.js Sun Jan 15 23:24:03 2023 +0900 @@ -12,14 +12,14 @@ // @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/medium-popup-disable.user.js // ==/UserScript== -;(function () { - 'use strict' - const popups = document.getElementsByClassName('highlightMenu') +(function () { + 'use strict'; + const popups = document.getElementsByClassName('highlightMenu'); const killPopup = function (popup) { - popup.style.display = 'none' - } + popup.style.display = 'none'; + }; const killPopups = function () { - Array.prototype.forEach.call(popups, killPopup) - } - document.addEventListener('click', killPopups) -}).call() + Array.prototype.forEach.call(popups, killPopup); + }; + document.addEventListener('click', killPopups); +}).call();