mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
fixed some quote issues.
This commit is contained in:
parent
769331d45d
commit
ee28926da0
8 changed files with 54 additions and 54 deletions
|
@ -9,14 +9,14 @@ define(['app','backgrid'], function () {
|
|||
var status = this.model.get('status');
|
||||
|
||||
if (!monitored) {
|
||||
this.$el.html('<i class='icon-pause grid-icon' title='Not Monitored'></i>');
|
||||
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
|
||||
}
|
||||
else if (status === 'continuing') {
|
||||
this.$el.html('<i class='icon-play grid-icon' title='Continuing'></i>');
|
||||
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
|
||||
}
|
||||
|
||||
else {
|
||||
this.$el.html('<i class='icon-stop grid-icon' title='Ended'></i>');
|
||||
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
|
||||
}
|
||||
|
||||
return this;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue