We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0acc0e4 commit e444fa9Copy full SHA for e444fa9
src/js/Sponsor.js
@@ -20,7 +20,10 @@ export default class Sponsor {
20
this._api.loadSponsorTile(DarkTheme.enabled ? 'dark' : 'light', this._name,
21
(content) => {
22
if (content) {
23
- this._div.html(content);
+ this._div.fadeOut(500, () => {
24
+ this._div.html(content);
25
+ this._div.fadeIn(500);
26
+ });
27
this._div.show();
28
} else {
29
this._div.hide();
0 commit comments