From 03ec051087cec77c92f349cbefe05777ac37eb76 Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Mon, 12 Jan 2015 15:27:45 -0700 Subject: [PATCH] Fix excess colon on settings descriptions --- builds/appchan-x.user.js | 2 +- builds/crx/script.js | 2 +- src/General/Settings.coffee | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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