diff --git a/couchpotato/core/plugins/movie/static/movie.actions.js b/couchpotato/core/plugins/movie/static/movie.actions.js index 2b7f76d..cf30e8a 100644 --- a/couchpotato/core/plugins/movie/static/movie.actions.js +++ b/couchpotato/core/plugins/movie/static/movie.actions.js @@ -89,23 +89,10 @@ MA.Release = new Class({ } }); - if(self.movie.data.releases.length == 0){ + if(self.movie.data.releases.length == 0) self.el.hide() - } - else { - - var releases = self.movie.data.releases.sortBy('-info.score'); - - for(x in releases){ - var release = releases[x], - status = Status.get(release.status_id); - - if((self.next_release && (status.identifier == 'ignored' || status.identifier == 'failed')) || (!self.next_release && status.identifier == 'available')){ - self.showHelper(); - break; - } - } - } + else + self.showHelper(); }, diff --git a/couchpotato/core/plugins/movie/static/movie.css b/couchpotato/core/plugins/movie/static/movie.css index dd1bcbd..3e947dd 100644 --- a/couchpotato/core/plugins/movie/static/movie.css +++ b/couchpotato/core/plugins/movie/static/movie.css @@ -518,7 +518,12 @@ opacity: 0; text-shadow: none; background: #4e5969; + min-width: 300px; + text-align: right; } + .wanted .movies .movie .trynext { + padding-right: 50px; + } .movies .movie:hover .trynext { opacity: 1; }