mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
Upgraded to FontAwesome 4.3.0
This commit is contained in:
@@ -15,10 +15,10 @@ module.exports = Paginator.extend({
|
||||
windowSize : 1,
|
||||
|
||||
fastForwardHandleLabels : {
|
||||
first : 'icon-fast-backward',
|
||||
prev : 'icon-backward',
|
||||
next : 'icon-forward',
|
||||
last : 'icon-fast-forward'
|
||||
first : 'icon-sonarr-pager-first',
|
||||
prev : 'icon-sonarr-pager-previous',
|
||||
next : 'icon-sonarr-pager-next',
|
||||
last : 'icon-sonarr-pager-last'
|
||||
},
|
||||
|
||||
changePage : function(e) {
|
||||
@@ -30,7 +30,7 @@ module.exports = Paginator.extend({
|
||||
return;
|
||||
}
|
||||
|
||||
target.closest('li i').addClass('icon-spinner icon-spin');
|
||||
target.closest('li i').addClass('icon-sonarr-spinner fa-spin');
|
||||
|
||||
var label = target.attr('data-action');
|
||||
var ffLabels = this.fastForwardHandleLabels;
|
||||
@@ -177,7 +177,7 @@ module.exports = Paginator.extend({
|
||||
|
||||
var selectedPage = parseInt(target.val(), 10);
|
||||
|
||||
this.$el.find('.x-page-number').html('<i class="icon-spinner icon-spin"></i>');
|
||||
this.$el.find('.x-page-number').html('<i class="icon-sonarr-spinner fa-spin"></i>');
|
||||
this.collection.getPage(selectedPage);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user