mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-25 09:00:27 +00:00
14 lines
415 B
PHP
14 lines
415 B
PHP
<div>
|
|
<div id="js-install-log" wire:poll="installLog" class="text-left text-sm font-medium text-gray-950 dark:text-yellow-500 h-[20rem] overflow-y-scroll">
|
|
|
|
{!! $this->install_log !!}
|
|
|
|
</div>
|
|
|
|
<script>
|
|
window.setInterval(function() {
|
|
var elem = document.getElementById('js-install-log');
|
|
elem.scrollTop = elem.scrollHeight;
|
|
}, 3000);
|
|
</script>
|
|
</div>
|