Skip to content

Commit

Permalink
Smoothing transition while refreshing sponsor icons (#3895)
Browse files Browse the repository at this point in the history
Fade in and out sponsor icons on refresh
  • Loading branch information
haslinghuis committed Apr 14, 2024
1 parent 0acc0e4 commit e444fa9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/js/Sponsor.js
Expand Up @@ -20,7 +20,10 @@ export default class Sponsor {
this._api.loadSponsorTile(DarkTheme.enabled ? 'dark' : 'light', this._name,
(content) => {
if (content) {
this._div.html(content);
this._div.fadeOut(500, () => {
this._div.html(content);
this._div.fadeIn(500);
});
this._div.show();
} else {
this._div.hide();
Expand Down

0 comments on commit e444fa9

Please sign in to comment.