Browse Source

Move logs to more menu

pull/84/head
Ruud 13 years ago
parent
commit
58f132546d
  1. 16
      couchpotato/core/plugins/log/static/log.js

16
couchpotato/core/plugins/log/static/log.js

@ -2,8 +2,22 @@ Page.Log = new Class({
Extends: PageBase,
name: 'log',
name: 'logs',
title: 'Show recent logs.',
has_tab: false,
initialize: function(options){
var self = this;
self.parent(options)
App.getBlock('more').addLink(new Element('a', {
'href': App.createUrl(self.name),
'text': self.name.capitalize(),
'title': self.title
}))
},
indexAction: function(){
var self = this;

Loading…
Cancel
Save