Upgraded to FontAwesome 4.3.0

This commit is contained in:
Mark McDowall
2015-02-20 18:20:31 -08:00
parent c4ce64d98d
commit 015deacd7b
132 changed files with 2260 additions and 3917 deletions
+3 -3
View File
@@ -14,7 +14,7 @@ module.exports = Backgrid.Cell.extend({
var self = this;
this.$el.html('<i class="icon-spinner icon-spin" />');
this.$el.html('<i class="icon-sonarr-spinner fa-spin" />');
//Using success callback instead of promise so it
//gets called before the sync event is triggered
@@ -29,9 +29,9 @@ module.exports = Backgrid.Cell.extend({
this.$el.empty();
if (this.model.get('queued')) {
this.$el.html('<i class="icon-nd-downloading" title="Added to downloaded queue" />');
this.$el.html('<i class="icon-sonarr-downloading" title="Added to downloaded queue" />');
} else if (this.model.get('downloadAllowed')) {
this.$el.html('<i class="icon-download-alt" title="Add to download queue" />');
this.$el.html('<i class="icon-sonarr-download" title="Add to download queue" />');
} else {
this.className = 'no-download-report-cell';
}