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
+4 -4
View File
@@ -95,11 +95,11 @@ module.exports = Marionette.Layout.extend({
_setCheckedState : function(checked) {
if (checked) {
this.ui.checkboxIcon.addClass('icon-check');
this.ui.checkboxIcon.removeClass('icon-check-empty');
this.ui.checkboxIcon.addClass('icon-sonarr-checked');
this.ui.checkboxIcon.removeClass('icon-sonarr-unchecked');
} else {
this.ui.checkboxIcon.addClass('icon-check-empty');
this.ui.checkboxIcon.removeClass('icon-check');
this.ui.checkboxIcon.addClass('icon-sonarr-unchecked');
this.ui.checkboxIcon.removeClass('icon-sonarr-checked');
}
},