Fix settings checkboxes
This commit is contained in:
parent
1fdd1ee64f
commit
92af3050aa
@ -18853,7 +18853,7 @@
|
|||||||
description = arr[1];
|
description = arr[1];
|
||||||
div = $.el('div');
|
div = $.el('div');
|
||||||
$.add(div, [
|
$.add(div, [
|
||||||
UI.checkbox(key, key, false), $.el('span', {
|
UI.checkbox(key, key), $.el('span', {
|
||||||
className: 'description',
|
className: 'description',
|
||||||
textContent: ": " + description
|
textContent: ": " + description
|
||||||
})
|
})
|
||||||
|
|||||||
@ -18890,7 +18890,7 @@
|
|||||||
description = arr[1];
|
description = arr[1];
|
||||||
div = $.el('div');
|
div = $.el('div');
|
||||||
$.add(div, [
|
$.add(div, [
|
||||||
UI.checkbox(key, key, false), $.el('span', {
|
UI.checkbox(key, key), $.el('span', {
|
||||||
className: 'description',
|
className: 'description',
|
||||||
textContent: ": " + description
|
textContent: ": " + description
|
||||||
})
|
})
|
||||||
|
|||||||
@ -121,7 +121,7 @@ Settings =
|
|||||||
description = arr[1]
|
description = arr[1]
|
||||||
div = $.el 'div'
|
div = $.el 'div'
|
||||||
$.add div, [
|
$.add div, [
|
||||||
UI.checkbox key, key, false
|
UI.checkbox key, key
|
||||||
$.el 'span', className: 'description', textContent: ": #{description}"
|
$.el 'span', className: 'description', textContent: ": #{description}"
|
||||||
]
|
]
|
||||||
input = $ 'input', div
|
input = $ 'input', div
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user