2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Fixed checkbox group selection and HTML errors

This commit is contained in:
Adam Zammit
2015-08-05 11:15:06 +10:00
parent fdc317c79a
commit 5371c20c4c
3 changed files with 25 additions and 23 deletions

View File

@@ -203,6 +203,8 @@ function checkQid(q)
QidOn = 1;
else
QidOn = 0;
$('input').iCheck('update');
}
@@ -225,12 +227,12 @@ function checkVid(v)
if (VidOn == 0)
VidOn = 1;
else
VidOn = 0;
VidOn = 0;
$('input').iCheck('update');
}
</script>
</head>
<body>
<?php
@@ -267,8 +269,6 @@ foreach($operators as $v)
print "</table><input type=\"submit\" class='btn btn-default fa' name=\"submit\" value=\"" . T_("Modify operator skills") ."\"/></form>";
xhtml_foot();
?>
<script type="text/javascript">
@@ -277,3 +277,6 @@ $('input').iCheck({
increaseArea: '30%'
});
</script>
<?php
xhtml_foot();