Add identifier to movie lists

This commit is contained in:
Ruud
2012-02-26 21:45:45 +01:00
parent 08deab647c
commit 43d491aab5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -17,8 +17,8 @@ Page.Manage = new Class({
}).inject(self.el);
self.list = new MovieList({
'identifier': 'manage',
'status': 'done',
'navigation': true,
'actions': MovieActions
});
$(self.list).inject(self.el);
+1 -1
View File
@@ -12,8 +12,8 @@ Page.Wanted = new Class({
// Wanted movies
self.wanted = new MovieList({
'identifier': 'wanted',
'status': 'active',
'navigation': true,
'actions': MovieActions
});
$(self.wanted).inject(self.el);