Mercurial > ec-userscripts
diff cuffs-hulotte-popup.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/cuffs-hulotte-popup.user.js Sun Jan 15 23:15:45 2023 +0900 +++ b/cuffs-hulotte-popup.user.js Sun Jan 15 23:24:03 2023 +0900 @@ -12,35 +12,35 @@ // ==/UserScript== /* global jQuery, stopload */ -;(function () { - 'use strict' +(function () { + 'use strict'; - const $ = jQuery - const rules = [] - let i - let styleEl + const $ = jQuery; + const rules = []; + let i; + let styleEl; if (document.querySelector('body > #mainContent') != null) { - rules.push('body > :not(#mainContent) { display: none !important; }') + rules.push('body > :not(#mainContent) { display: none !important; }'); } - rules.push('#load_bg { display: none !important; }') - rules.push('body > .modal { display: none !important; }') - rules.push('body > div[style*="position: fixed"] { display: none !important; }') + rules.push('#load_bg { display: none !important; }'); + rules.push('body > .modal { display: none !important; }'); + rules.push('body > div[style*="position: fixed"] { display: none !important; }'); for (i = 0; i < rules.length; i++) { - styleEl = document.createElement('style') - document.head.appendChild(styleEl) - styleEl.sheet.insertRule(rules[i], 0) + styleEl = document.createElement('style'); + document.head.appendChild(styleEl); + styleEl.sheet.insertRule(rules[i], 0); } $(function () { - $('.cboxElement').removeClass('cboxElement') - }) + $('.cboxElement').removeClass('cboxElement'); + }); // force remove modal - $.cookie('modal', 'off') + $.cookie('modal', 'off'); if (typeof stopload === 'function') { - stopload() + stopload(); } -}).call() +}).call();