diff cuffs-hulotte-popup.user.js @ 117:d9dc190bccaf

Undo combining fixes into single script per site
author nanaya <me@nanaya.net>
date Sun, 15 Jan 2023 23:49:35 +0900
parents ef21ef445fc6
children 8de2d53a4cb1
line wrap: on
line diff
--- a/cuffs-hulotte-popup.user.js	Sun Jan 15 23:46:56 2023 +0900
+++ b/cuffs-hulotte-popup.user.js	Sun Jan 15 23:49:35 2023 +0900
@@ -14,35 +14,31 @@
 'use strict';
 
 /* global jQuery, stopload */
-function alwaysConsent () {
-  const $ = jQuery;
-  const rules = [];
-  let i;
-  let styleEl;
-
-  if (document.querySelector('body > #mainContent') != null) {
-    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; }');
+const $ = jQuery;
+const rules = [];
+let i;
+let styleEl;
 
-  for (i = 0; i < rules.length; i++) {
-    styleEl = document.createElement('style');
-    document.head.appendChild(styleEl);
-    styleEl.sheet.insertRule(rules[i], 0);
-  }
-
-  $(function () {
-    $('.cboxElement').removeClass('cboxElement');
-  });
-
-  // force remove modal
-  $.cookie('modal', 'off');
-  if (typeof stopload === 'function') {
-    stopload();
-  }
+if (document.querySelector('body > #mainContent') != null) {
+  rules.push('body > :not(#mainContent) { display: none !important; }');
 }
 
-alwaysConsent();
+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);
+}
+
+$(function () {
+  $('.cboxElement').removeClass('cboxElement');
+});
+
+// force remove modal
+$.cookie('modal', 'off');
+if (typeof stopload === 'function') {
+  stopload();
+}