Updated to improve storing of seconds against the time

这个提交包含在:
Peter Goodhall 2019-10-06 16:38:54 +01:00
父节点 5ce70ec532
当前提交 48bb5948b5

查看文件

@ -129,15 +129,13 @@ $(document).ready(function() {
</script> </script>
<script> <script>
$(document).ready(function() { $('[data-fancybox]').fancybox({
$('.fancybox').fancybox({ toolbar : false,
toolbar : false, smallBtn : true,
smallBtn : true, iframe : {
iframe : { preload : false
preload : false }
} })
});
});
</script> </script>
<?php if ($this->uri->segment(1) == "" || $this->uri->segment(1) == "dashboard" ) { ?> <?php if ($this->uri->segment(1) == "" || $this->uri->segment(1) == "dashboard" ) { ?>
@ -319,7 +317,7 @@ $(document).on('keypress',function(e) {
$(function($) { $(function($) {
var options = { var options = {
utc: true, utc: true,
format: '%H:%M' format: '%H:%M:%S'
} }
$('.input_time').jclock(options); $('.input_time').jclock(options);
}); });