Fix awardable button mutuality loading spinners
This commit is contained in:
parent
b8130d42c2
commit
e3292f1ede
2 changed files with 2 additions and 13 deletions
|
@ -16,6 +16,7 @@ v 8.11.0 (unreleased)
|
|||
- Expand commit message width in repo view (ClemMakesApps)
|
||||
- Cache highlighted diff lines for merge requests
|
||||
- Fix of 'Commits being passed to custom hooks are already reachable when using the UI'
|
||||
- Fix awardable button mutuality loading spinners (ClemMakesApps)
|
||||
- Add support for using RequestStore within Sidekiq tasks via SIDEKIQ_REQUEST_STORE env variable
|
||||
- Optimize maximum user access level lookup in loading of notes
|
||||
- Add "No one can push" as an option for protected branches. !5081
|
||||
|
|
|
@ -161,23 +161,11 @@
|
|||
$emojiButton = votesBlock.find("[data-emoji=" + mutualVote + "]").parent();
|
||||
isAlreadyVoted = $emojiButton.hasClass('active');
|
||||
if (isAlreadyVoted) {
|
||||
this.showEmojiLoader($emojiButton);
|
||||
return this.addAward(votesBlock, awardUrl, mutualVote, false, function() {
|
||||
return $emojiButton.removeClass('is-loading');
|
||||
});
|
||||
this.addAward(votesBlock, awardUrl, mutualVote, false);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
AwardsHandler.prototype.showEmojiLoader = function($emojiButton) {
|
||||
var $loader;
|
||||
$loader = $emojiButton.find('.fa-spinner');
|
||||
if (!$loader.length) {
|
||||
$emojiButton.append('<i class="fa fa-spinner fa-spin award-control-icon award-control-icon-loading"></i>');
|
||||
}
|
||||
return $emojiButton.addClass('is-loading');
|
||||
};
|
||||
|
||||
AwardsHandler.prototype.isActive = function($emojiButton) {
|
||||
return $emojiButton.hasClass('active');
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue