reverse direction of debug box
This commit is contained in:
parent
c5466b7f57
commit
9f3a745568
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue