Fix excess colon on settings descriptions

This commit is contained in:
Zixaphir 2015-01-12 15:27:45 -07:00
parent ba66d077cd
commit 03ec051087
3 changed files with 3 additions and 3 deletions

View File

@ -18974,7 +18974,7 @@
$.add(div, [ $.add(div, [
UI.checkbox(key, key), $.el('span', { UI.checkbox(key, key), $.el('span', {
className: 'description', className: 'description',
textContent: ": " + description textContent: description
}) })
]); ]);
input = $('input', div); input = $('input', div);

View File

@ -19008,7 +19008,7 @@
$.add(div, [ $.add(div, [
UI.checkbox(key, key), $.el('span', { UI.checkbox(key, key), $.el('span', {
className: 'description', className: 'description',
textContent: ": " + description textContent: description
}) })
]); ]);
input = $('input', div); input = $('input', div);

View File

@ -122,7 +122,7 @@ Settings =
div = $.el 'div' div = $.el 'div'
$.add div, [ $.add div, [
UI.checkbox key, key UI.checkbox key, key
$.el 'span', className: 'description', textContent: ": #{description}" $.el 'span', className: 'description', textContent: description
] ]
input = $ 'input', div input = $ 'input', div
$.on $('label', div), 'mouseover', Settings.mouseover $.on $('label', div), 'mouseover', Settings.mouseover