2016-10-05 08:06:51 +00:00
|
|
|
/* LOG UNE ACTION
|
|
|
|
*
|
|
|
|
* @message<String> Appends the message to the log history
|
|
|
|
*
|
|
|
|
*/
|
2016-10-05 08:47:05 +00:00
|
|
|
var logs = [];
|
|
|
|
|
2016-10-05 10:13:48 +00:00
|
|
|
var log = function(message, title){
|
|
|
|
title = title || null;
|
|
|
|
|
2016-10-05 08:47:05 +00:00
|
|
|
var index = logs.push( document.createElement('span') ) - 1;
|
|
|
|
|
2016-10-05 10:13:48 +00:00
|
|
|
logs[index].innerHTML = '';
|
|
|
|
logs[index].innerHTML += (title) ? '<strong>'+title+'</strong> ' : '';
|
|
|
|
logs[index].innerHTML += message;
|
2016-10-05 08:47:05 +00:00
|
|
|
$('body > div#log').appendChild( logs[index] );
|
2016-10-05 08:06:51 +00:00
|
|
|
};
|