reverse direction of debug box

This commit is contained in:
Andrew Dolgov 2006-03-02 09:47:05 +01:00
parent c5466b7f57
commit 9f3a745568
1 changed files with 3 additions and 3 deletions

View File

@ -691,12 +691,12 @@ function toggleDispRead() {
function debug(msg) { function debug(msg) {
var c = document.getElementById('debug_output'); var c = document.getElementById('debug_output');
if (c && c.style.display == "block") { if (c && c.style.display == "block") {
while (c.firstChild != 'undefined' && c.childNodes.length > 15) { while (c.lastChild != 'undefined' && c.childNodes.length > 20) {
c.removeChild(c.firstChild); c.removeChild(c.lastChild);
} }
var d = new Date(); var d = new Date();
var ts = d.getHours() + ":" + d.getMinutes() + ":" + d.getSeconds(); var ts = d.getHours() + ":" + d.getMinutes() + ":" + d.getSeconds();
c.innerHTML = c.innerHTML + "<li>[" + ts + "] " + msg + "</li>"; c.innerHTML = "<li>[" + ts + "] " + msg + "</li>" + c.innerHTML;
} }
} }