Files
CouchPotatoServer/couchpotato/static/scripts/page/log.js
T
2011-06-04 21:30:45 +02:00

27 lines
425 B
JavaScript

Page.Log = new Class({
Extends: PageBase,
name: 'log',
title: 'Show recent logs.',
indexAction: function(){
var self = this;
if(self.log) self.log.destroy();
self.log = new Element('div.log', {
'text': 'loading...'
}).inject(self.el)
Api.request('logging.get', {
'data': {
'nr': 0
},
'onComplete': function(json){
self.log.set('html', '<pre>'+json.log+'</pre>')
}
})
}
})