face-recognition.js/public_html/js/lib/local.js

14 lines
287 B
JavaScript
Raw Normal View History

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