mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
jquery plugin to attach a promise to a spinning icon
This commit is contained in:
@@ -4,9 +4,22 @@ define(
|
||||
], function ($) {
|
||||
'use strict';
|
||||
|
||||
$.fn.spinForPromise = function (promise) {
|
||||
var self = this;
|
||||
|
||||
if (!promise || promise.state() !== 'pending') {
|
||||
return this;
|
||||
}
|
||||
promise.always(function () {
|
||||
self.stopSpin();
|
||||
});
|
||||
|
||||
return this.startSpin();
|
||||
};
|
||||
|
||||
$.fn.startSpin = function () {
|
||||
|
||||
var icon = this.find('i');
|
||||
var icon = this.find('i').andSelf('i');
|
||||
|
||||
var iconClasses = icon.attr('class').match(/(?:^|\s)icon\-.+?(?:$|\s)/);
|
||||
|
||||
@@ -31,7 +44,7 @@ define(
|
||||
};
|
||||
|
||||
$.fn.stopSpin = function () {
|
||||
var icon = this.find('i');
|
||||
var icon = this.find('i').andSelf('i');
|
||||
|
||||
this.removeClass('disabled');
|
||||
icon.removeClass('icon-spin icon-nd-spinner');
|
||||
|
Reference in New Issue
Block a user