From 43d491aab5541d170aefefaedd573b42805723f1 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 26 Feb 2012 21:45:45 +0100 Subject: [PATCH] Add identifier to movie lists --- couchpotato/static/scripts/page/manage.js | 2 +- couchpotato/static/scripts/page/wanted.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/static/scripts/page/manage.js b/couchpotato/static/scripts/page/manage.js index 0ed3dfc8..34529c55 100644 --- a/couchpotato/static/scripts/page/manage.js +++ b/couchpotato/static/scripts/page/manage.js @@ -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); diff --git a/couchpotato/static/scripts/page/wanted.js b/couchpotato/static/scripts/page/wanted.js index bb68dc29..9bf5e48a 100644 --- a/couchpotato/static/scripts/page/wanted.js +++ b/couchpotato/static/scripts/page/wanted.js @@ -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);