From ba62293bd7129677b619cf59babbe351744172fa Mon Sep 17 00:00:00 2001 From: Ruud Date: Thu, 18 Aug 2011 15:52:36 +0200 Subject: [PATCH] Remove snatched from wanted page --- couchpotato/static/scripts/page/wanted.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/couchpotato/static/scripts/page/wanted.js b/couchpotato/static/scripts/page/wanted.js index 3ba0f2bf..48d860fe 100644 --- a/couchpotato/static/scripts/page/wanted.js +++ b/couchpotato/static/scripts/page/wanted.js @@ -17,14 +17,6 @@ Page.Wanted = new Class({ }); $(self.wanted).inject(self.el); App.addEvent('library.update', self.wanted.update.bind(self.wanted)); - - // Snatched movies - self.snatched = new MovieList({ - 'status': 'snatched', - 'actions': SnatchedActions - }); - $(self.snatched).inject(self.el); - App.addEvent('library.update', self.snatched.update.bind(self.snatched)); } }