Fixed log

This commit is contained in:
a_voel02 2018-08-26 23:04:53 +02:00
parent d64fcc57f1
commit 5232868a10

View File

@ -18,7 +18,7 @@
<h2>Log:</h2> <h2>Log:</h2>
<div id='log'> <div id='log'>
<textarea id='logs' style="width: 500px; height: 500px;"></textarea> <textarea readonly id='logs' style="width: 500px; height: 500px;"></textarea>
</div> </div>
<script> <script>
function getRaw(from, callback){ function getRaw(from, callback){
@ -96,7 +96,6 @@
document.getElementById('logs').innerText = text; document.getElementById('logs').innerText = text;
}); });
} }
updateLog(); updateLog();
setInterval(updateLog, 1000); setInterval(updateLog, 1000);