mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-16 21:16:24 -04:00
Bootstrap 3
New: Updated UI New: Mobile browser support Fixed: /favicon.ico will return the favicon now
This commit is contained in:
@@ -44,4 +44,16 @@ define(
|
||||
return 'primary';
|
||||
|
||||
});
|
||||
|
||||
Handlebars.registerHelper('EpisodeProgressClass', function () {
|
||||
if (this.episodeFileCount === this.episodeCount) {
|
||||
if (this.continuing) {
|
||||
return '';
|
||||
}
|
||||
|
||||
return 'progress-bar-success';
|
||||
}
|
||||
|
||||
return 'progress-bar-danger';
|
||||
});
|
||||
});
|
||||
|
||||
@@ -11,7 +11,7 @@ define(
|
||||
var profile = QualityProfileCollection.get(profileId);
|
||||
|
||||
if (profile) {
|
||||
return new Handlebars.SafeString('<span class="label quality-profile-label">' + profile.get("name") + '</span>');
|
||||
return new Handlebars.SafeString('<span class="label label-default quality-profile-label">' + profile.get("name") + '</span>');
|
||||
}
|
||||
|
||||
return undefined;
|
||||
|
||||
Reference in New Issue
Block a user