logs display modifications

This commit is contained in:
Starow 2014-08-13 10:59:47 +02:00
parent 37033ca3a6
commit 0d25b960af
2 changed files with 6 additions and 1 deletions

View file

@ -81,7 +81,10 @@ function create_log_table(obj_json) {
}
iconspan.innerHTML = " ";
msage.appendChild(iconspan);
msage.appendChild(document.createTextNode(parsedmess[4]));
var message = parsedmess[4].split(" ");
message.shift();
msage.appendChild(document.createTextNode(message.join(" ")));
tr.appendChild(time)
tr.appendChild(chan);

View file

@ -112,6 +112,7 @@
<div class="panel-body">
<div class="table-responsive", id="logger">
<div class="row">
<div class="col-lg-6">
<table class="table table-bordered table-hover table-striped" id="table_log">
<thead>
<tr>
@ -129,6 +130,7 @@
</tbody>
<table>
</div>
</div>
</div>
</div>
</div>