Skip to content

Commit

Permalink
Update index.ejs
Browse files Browse the repository at this point in the history
  • Loading branch information
hrishiballal committed Aug 27, 2024
1 parent e21821c commit c8e93ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions views/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@
function generateSystemCB(systems) {
for (var x = 0; x < systems.length; x++) {
$('#systemsCB').append('<input class="chekbox" name="sysCB" id=' + "'" + systems[x].sysname + "'" +
'type="checkbox" checked /> <span class="square c-' + systems[x].syscolor.substring(1) +
'"></span>&nbsp;&nbsp;' + systems[x].sysname + '</input>&nbsp;&nbsp;');
$('#systemsCB').append('<input class="chekbox" name="sysCB" id=' + "'" + systems[x].name + "'" +
'type="checkbox" checked /> <span class="square c-' + systems[x].color.substring(1) +
'"></span>&nbsp;&nbsp;' + systems[x].name + '</input>&nbsp;&nbsp;');
}
}
Expand Down

0 comments on commit c8e93ac

Please sign in to comment.