Progress bar shows 100% for 0/0 episodes aired

New: Series progress bar will be filled for a new series with no unaired
episodes.
pull/4/head
Mark McDowall 12 years ago
parent a48dbba015
commit 86e81efc16

@ -165,7 +165,9 @@
}
}, //Next Airing
{ sWidth: '140px', "mDataProp": "Episodes", "bSortable": false, "fnRender": function (row) {
var progress = row.aData["EpisodeFileCount"] / row.aData["EpisodeCount"] * 100;
var progress = 100;
if (row.aData["EpisodeCount"] > 0)
progress = row.aData["EpisodeFileCount"] / row.aData["EpisodeCount"] * 100;
var result = "<div class='progressBar' rel='" + progress + "'>" +
"<span class='progressBarText'>" + row.aData["EpisodeFileCount"] + " / " + row.aData["EpisodeCount"] +"</span>" +

Loading…
Cancel
Save