diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 0bd8f3b8d..3369a9f4a 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -18853,7 +18853,7 @@ description = arr[1]; div = $.el('div'); $.add(div, [ - UI.checkbox(key, key, false), $.el('span', { + UI.checkbox(key, key), $.el('span', { className: 'description', textContent: ": " + description }) diff --git a/builds/crx/script.js b/builds/crx/script.js index 7108602b7..7383b01d4 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -18890,7 +18890,7 @@ description = arr[1]; div = $.el('div'); $.add(div, [ - UI.checkbox(key, key, false), $.el('span', { + UI.checkbox(key, key), $.el('span', { className: 'description', textContent: ": " + description }) diff --git a/src/General/Settings.coffee b/src/General/Settings.coffee index 7f4a4c72b..03eb56682 100755 --- a/src/General/Settings.coffee +++ b/src/General/Settings.coffee @@ -121,7 +121,7 @@ Settings = description = arr[1] div = $.el 'div' $.add div, [ - UI.checkbox key, key, false + UI.checkbox key, key $.el 'span', className: 'description', textContent: ": #{description}" ] input = $ 'input', div