summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/basetable_bottom.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/basetable_bottom.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html b/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html
index 4eb303da79..ac14363798 100644
--- a/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html
+++ b/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html
@@ -44,7 +44,8 @@
44 setting = save.split(';'); 44 setting = save.split(';');
45 for ( i = 0; i < setting.length; i++) { 45 for ( i = 0; i < setting.length; i++) {
46 if (setting[i].length > 0) { 46 if (setting[i].length > 0) {
47 [id, v] = setting[i].split(':'); 47 splitlist = setting[i].split(':');
48 id = splitlist[0], v = splitlist[1];
48 if (v == 'true') { 49 if (v == 'true') {
49 $('.chbxtoggle#'+id).prop('checked', true); 50 $('.chbxtoggle#'+id).prop('checked', true);
50 } 51 }