1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-03-30 04:17:02 +00:00

fix: add classes to tables

This commit is contained in:
Baoshuo Ren 2022-09-26 14:35:13 +08:00
parent 87847e02d0
commit 6cbf44ead5
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

@ -419,6 +419,15 @@ $('#contest-countdown').countdown(<?= $contest['end_time']->getTimestamp() - UOJ
</aside>
</div>
<script>
$(document).ready(function() {
$('.markdown-body table').each(function() {
$(this).addClass('table', 'table-bordered', 'table-striped');
});
});
</script>
<?php endif ?>
<?php echoUOJPageFooter() ?>