fixed some quote issues.

This commit is contained in:
kay.one 2013-06-22 08:58:16 -07:00
commit ee28926da0
8 changed files with 54 additions and 54 deletions

View file

@ -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;