mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
Padding log hours + adding some super nice bootstrap icon :)
This commit is contained in:
parent
5a4218035a
commit
731141c723
1 changed files with 16 additions and 1 deletions
|
@ -18,6 +18,11 @@ source.onmessage = function(event) {
|
|||
create_log_table(feed);
|
||||
};
|
||||
|
||||
function pad_2(number)
|
||||
{
|
||||
return (number < 10 ? '0' : '') + number;
|
||||
}
|
||||
|
||||
function create_log_table(obj_json) {
|
||||
tableBody = document.getElementById("tab_body")
|
||||
var tr = document.createElement('TR')
|
||||
|
@ -57,7 +62,7 @@ function create_log_table(obj_json) {
|
|||
src.appendChild(source_link);
|
||||
|
||||
var now = new Date();
|
||||
var timepaste = now.getHours() + ":" + now.getMinutes() + ":" + now.getSeconds();
|
||||
var timepaste = pad_2(now.getHours()) + ":" + pad_2(now.getMinutes()) + ":" + pad_2(now.getSeconds());
|
||||
|
||||
time.appendChild(document.createTextNode(timepaste));
|
||||
chan.appendChild(document.createTextNode(chansplit[0]));
|
||||
|
@ -66,6 +71,16 @@ function create_log_table(obj_json) {
|
|||
scrpt.appendChild(document.createTextNode(parsedmess[0]));
|
||||
pdate.appendChild(document.createTextNode(parsedmess[2]));
|
||||
nam.appendChild(document.createTextNode(parsedmess[3]));
|
||||
|
||||
var iconspan = document.createElement('SPAN');
|
||||
if (parsedmess[4].split(" ")[0] == "Detected"){
|
||||
iconspan.className = "glyphicon glyphicon-eye-open";
|
||||
}
|
||||
else if (parsedmess[4].split(" ")[0] == "Checked"){
|
||||
iconspan.className = "glyphicon glyphicon-thumbs-up";
|
||||
}
|
||||
iconspan.innerHTML = " ";
|
||||
msage.appendChild(iconspan);
|
||||
msage.appendChild(document.createTextNode(parsedmess[4]));
|
||||
|
||||
tr.appendChild(time)
|
||||
|
|
Loading…
Reference in a new issue