1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Oinktube/view/include/bootstrap.js.php
Caleb Mazalevskis 27a7925b98
Refactor.
2022-01-06 21:44:29 +08:00

12 lines
No EOL
458 B
PHP

<?php
if (empty($global['userBootstrapLatest'])) {
?>
<script src="<?php echo getURL('view/bootstrap/js/bootstrap.min.js'); ?>" type="text/javascript"></script>
<?php
} else {
?>
<script src="<?php echo getURL('node_modules/bootstrap/dist/js/bootstrap.bundle.min.js'); ?>" type="text/javascript"></script>
<script src="<?php echo getURL('view/bootstrap/compatibility.js'); ?>" type="text/javascript"></script
<?php
}
?>