24 lines
730 B
PHP
24 lines
730 B
PHP
<?php // admin/footer.php ?>
|
|
<?php if ($current_page !== 'login.php'): ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
|
|
<script src="https://cdn.quilljs.com/1.3.6/quill.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
if ($('.datatable').length) {
|
|
$('.datatable').DataTable({
|
|
"language": {
|
|
"url": "//cdn.datatables.net/plug-ins/1.13.6/i18n/th.json"
|
|
}
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|