change IsRecording filter to IsInProgress

This commit is contained in:
Luke Pulverenti 2014-01-15 10:18:31 -05:00
parent ccc7823449
commit 817effb7d8
3 changed files with 11 additions and 12 deletions

View File

@ -221,7 +221,7 @@
background-size: cover;
vertical-align: top;
position: relative;
top: -2px;
top: -1px;
}
.halfStarRating {
@ -236,7 +236,7 @@
display: inline-block;
margin-left: 1px;
position: relative;
top: -2px;
top: -1px;
}
.rottentomatoesicon {
@ -248,7 +248,7 @@
background-repeat: no-repeat;
vertical-align: top;
position: relative;
top: -2px;
top: -1px;
}
.starRatingValue + .rottentomatoesicon {
@ -266,25 +266,24 @@
.metascore {
font-family: Arial;
color: #fff;
font-weight: bold;
display: inline-block;
font-size: 12px;
text-align: center;
padding: 2px 4px;
position: relative;
top: -2px;
top: -1px;
}
.metascorehigh {
background-color: rgba(102, 204, 51, .75);
background-color: rgba(102, 204, 51, .65);
}
.metascoremid {
background-color: rgba(255, 204, 51, .75);
background-color: rgba(255, 204, 51, .65);
}
.metascorelow {
background-color: rgba(240, 0, 0, .75);
background-color: rgba(240, 0, 0, .65);
}
.criticRating + .metascore, .starRatingValue + .metascore {
@ -311,7 +310,7 @@
display: inline-block;
margin-left: 1px;
position: relative;
top: -2px;
top: -1px;
}
.criticRatingSummary {

View File

@ -26,7 +26,7 @@
right: 0;
left: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .9);
background-color: rgba(0, 0, 0, .85);
z-index: 999;
display: none;
}

View File

@ -68,7 +68,7 @@
apiClient.getLiveTvRecordings({
userId: Dashboard.getCurrentUserId(),
isRecording: true
IsInProgress: true
}).done(function (result) {
@ -80,7 +80,7 @@
userId: Dashboard.getCurrentUserId(),
limit: 12,
isRecording: false
IsInProgress: false
}).done(function (result) {