mirror of https://github.com/lidarr/Lidarr
Tootips added or episode status
This commit is contained in:
parent
62e9d7566e
commit
fc9dcb1084
|
@ -14,21 +14,24 @@ define(
|
|||
if (this.model) {
|
||||
|
||||
var icon;
|
||||
var tooltip;
|
||||
|
||||
if (this.model.get('episodeFile')) {
|
||||
icon = 'icon-ok';
|
||||
|
||||
tooltip = 'Episode downloaded';
|
||||
}
|
||||
else {
|
||||
if (this.model.get('hasAired')) {
|
||||
icon = 'icon-warning-sign';
|
||||
tooltip = 'Episode missing from disk';
|
||||
}
|
||||
else {
|
||||
icon = 'icon-time';
|
||||
tooltip = 'Episode has not aired';
|
||||
}
|
||||
}
|
||||
|
||||
this.$el.html('<i class="{0}"/>'.format(icon));
|
||||
this.$el.html('<i class="{0}" title="{1}"/>'.format(icon, tooltip));
|
||||
}
|
||||
|
||||
return this;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
@import "../prefixer";
|
||||
|
||||
.label, .badge {
|
||||
.label, .badge, i {
|
||||
cursor : default;
|
||||
}
|
||||
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
i {
|
||||
font-size : 16px;
|
||||
color : #595959;
|
||||
cursor : default;
|
||||
}
|
||||
.checkbox {
|
||||
width : 100px;
|
||||
|
|
Loading…
Reference in New Issue