diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 00d6134de..981232114 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -18974,7 +18974,7 @@ $.add(div, [ UI.checkbox(key, key), $.el('span', { className: 'description', - textContent: ": " + description + textContent: description }) ]); input = $('input', div); diff --git a/builds/crx/script.js b/builds/crx/script.js index 676bf4101..0ff434796 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -19008,7 +19008,7 @@ $.add(div, [ UI.checkbox(key, key), $.el('span', { className: 'description', - textContent: ": " + description + textContent: description }) ]); input = $('input', div); diff --git a/src/General/Settings.coffee b/src/General/Settings.coffee index 03eb56682..b259aaa15 100755 --- a/src/General/Settings.coffee +++ b/src/General/Settings.coffee @@ -122,7 +122,7 @@ Settings = div = $.el 'div' $.add div, [ UI.checkbox key, key - $.el 'span', className: 'description', textContent: ": #{description}" + $.el 'span', className: 'description', textContent: description ] input = $ 'input', div $.on $('label', div), 'mouseover', Settings.mouseover