Prevent releases with unknown series from being downloaded

This commit is contained in:
Mark McDowall 2013-09-18 12:15:34 -07:00
parent 82933fbcc3
commit 6c91639d64
3 changed files with 15 additions and 2 deletions

View file

@ -29,10 +29,14 @@ define(
},
render: function () {
this.$el.html('');
if (this.model.get('downloadAllowed'))
{
this.$el.html('<i class="icon-download-alt" title="Add to download queue" />');
}
this.$el.html('<i class="icon-download-alt" title="Add to download queue" />');
return this;
}
});
});