log viewer for web debugging
parent
2fc3b9e507
commit
873ab3b6a2
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Screenless Office - log for ${bureau}</title>
|
||||
<style type="text/css" media="screen">
|
||||
#logview {
|
||||
height: 40em;
|
||||
width: 80em;
|
||||
overflow: scroll;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h3>The Screenless Office</h3>
|
||||
<h4> edit config file <em>${cfgfile}</em></h4>
|
||||
<div><a href="/">← Main</a></div>
|
||||
<div id="logview">${logdata}</div>
|
||||
<script>
|
||||
var logDiv = document.getElementById("logview");
|
||||
logDiv.scrollTop = objDiv.scrollHeight;
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue