Fix excess colon on settings descriptions
This commit is contained in:
parent
ba66d077cd
commit
03ec051087
@ -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);
|
||||||
|
|||||||
@ -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);
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user