Fix excess colon on settings descriptions
This commit is contained in:
parent
ba66d077cd
commit
03ec051087
@ -18974,7 +18974,7 @@
|
||||
$.add(div, [
|
||||
UI.checkbox(key, key), $.el('span', {
|
||||
className: 'description',
|
||||
textContent: ": " + description
|
||||
textContent: description
|
||||
})
|
||||
]);
|
||||
input = $('input', div);
|
||||
|
||||
@ -19008,7 +19008,7 @@
|
||||
$.add(div, [
|
||||
UI.checkbox(key, key), $.el('span', {
|
||||
className: 'description',
|
||||
textContent: ": " + description
|
||||
textContent: description
|
||||
})
|
||||
]);
|
||||
input = $('input', div);
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user