RLG-Web: add a new message framework.

Add a message() function meant for UI messages, not debugging info.
This commit is contained in:
John "Elwin" Edwards 2012-07-10 08:08:54 -07:00
parent 06614ac0aa
commit 5af0160769
3 changed files with 37 additions and 3 deletions

View file

@ -80,6 +80,20 @@ div#keys {
font-size: 12px;
}
div#messages {
width: 100%;
max-height: 10em;
overflow: scroll;
clear: both;
}
div#messages div {
margin: 0.4em 0.8em;
padding: 0.4em 0.4em;
font-weight: bold;
background-color: white;
}
div#debug {
display: none;
}