Added trakt/imdb links to series details

This commit is contained in:
Mark McDowall 2013-06-07 08:42:28 -07:00
parent 50444fc34a
commit 8274cb30cf
3 changed files with 12 additions and 3 deletions

View file

@ -29,6 +29,9 @@ define(['app', 'Quality/QualityProfileCollection', 'AddSeries/RootFolders/RootFo
traktUrl : function () {
return "http://trakt.tv/show/" + this.get('titleSlug');
},
imdbUrl : function () {
return "http://imdb.com/title/" + this.get('imdbId');
},
isContinuing : function () {
return this.get('status') === 'continuing';
},