Fix settings checkboxes

This commit is contained in:
Zixaphir 2015-01-11 20:58:51 -07:00
parent 1fdd1ee64f
commit 92af3050aa
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

@ -121,7 +121,7 @@ Settings =
description = arr[1]
div = $.el 'div'
$.add div, [
UI.checkbox key, key, false
UI.checkbox key, key
$.el 'span', className: 'description', textContent: ": #{description}"
]
input = $ 'input', div