New: Show release name when downloading (series details & calendar)

This commit is contained in:
Mark McDowall
2014-04-04 08:56:29 -07:00
parent 2427b1f254
commit 52c5c19b0a
3 changed files with 20 additions and 1 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ define(
if (downloading) {
var progress = 100 - (downloading.get('sizeleft') / downloading.get('size') * 100);
this.$el.html('<div class="progress progress-purple" title="Episode is downloading - {0}%" data-container="body">'.format(progress.toFixed(1)) +
this.$el.html('<div class="progress progress-purple" title="Episode is downloading - {0}% {1}" data-container="body">'.format(progress.toFixed(1), downloading.get('title')) +
'<div class="bar" style="width: {0}%;"></div></div>'.format(progress));
return;
}