Files
CouchPotatoServer/couchpotato/static/scripts/page/manage.js
T
Ruud 98aafeaec3 Renamer, movie searcher, Library scanning
New theme for UI
and more..
2011-05-28 20:52:18 +02:00

27 lines
346 B
JavaScript

Page.Manage = new Class({
Extends: PageBase,
name: 'manage',
title: 'Do stuff to your existing movies!',
indexAction: function(param){
var self = this;
self.list = new MovieList({
'status': 'done',
'actions': Manage.Action
});
$(self.list).inject(self.el);
}
});
var Manage = {
'Action': {
'IMBD': IMDBAction
}
}