Skip to content

Commit fd45f4d

Browse files
committed
Added missing IIFE invocation
1 parent e773699 commit fd45f4d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

hide-forum-images/hide-forum-images.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==UserScript==
22
// @name Hide Forum Images
3-
// @version 2025.10.19
3+
// @version 2025.10.19.1
44
// @author Adam Lui
55
// @namespace https://adamlui.com
66
// @description Hides images/videos from XenForo, vBulletin & Discourse forums.
@@ -29,4 +29,4 @@
2929
const styleNode = document.createElement('style') ; styleNode.innerText = css
3030
document.head.appendChild(styleNode)
3131
}
32-
})
32+
})()

highlight-radio-bubbles/highlight-radio-bubbles.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==UserScript==
22
// @name Highlight Radio Bubbles
3-
// @version 2025.10.19
3+
// @version 2025.10.19.1
44
// @author Adam Lui
55
// @namespace https://adamlui.com
66
// @description Makes radio bubbles bigger & more colorful when brought to focus.
@@ -25,4 +25,4 @@
2525
const styleNode = document.createElement('style')
2626
styleNode.innerHTML = 'input[type=radio]:focus { outline-color: red !important ; width: 25px !important ; height: 25px !important ; }'
2727
document.head.appendChild(styleNode)
28-
})
28+
})()

0 commit comments

Comments
 (0)