Resync'd UI and API

This commit is contained in:
Mark McDowall 2013-04-21 18:21:24 -07:00
commit 000b7bf9e0
7 changed files with 19 additions and 11 deletions

View file

@ -29,12 +29,12 @@
{{#if bestDateString}}
<span class="label">{{bestDateString}}</span>
{{else}}
<span class="label label-inverse">{{status}}</span>
<span class="label label-inverse">{{statusText}}</span>
{{/if}}
<span class="label label-info">Season {{numberOfSeasons}}</span>
<span class="label label-info">Season {{seasonCount}}</span>
{{else}}
<span class="label label-important">{{status}}</span>
<span class="label label-info">{{numberOfSeasons}} Seasons</span>
<span class="label label-important">{{statusText}}</span>
<span class="label label-info">{{seasonCount}} Seasons</span>
{{/if}}
</div>
<div class="span2">

View file

@ -35,11 +35,18 @@
return "http://trakt.tv/show/" + this.get('titleSlug');
},
isContinuing : function () {
if (this.get('status') === 'Continuing'){
if (this.get('status') === 0){
return true;
}
return false;
},
statusText: function () {
if (this.get('status') === 0) {
return 'Continuing';
}
return 'Ended';
}
},
@ -48,7 +55,8 @@
episodeCount : 0,
qualityProfiles : qualityProfileCollection,
rootFolders : rootFolders,
isExisting : false
isExisting : false,
status: 0
}
});

View file

@ -76,7 +76,7 @@ define('app', function () {
if (!monitored) {
return '<i class="icon-pause grid-icon" title="Not Monitored"></i>';
}
if (status === 'Continuing') {
if (status === 0) {
return '<i class="icon-play grid-icon" title="Continuing"></i>';
}