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 3a41c42 commit fcf44bbCopy full SHA for fcf44bb
filebrowser.js
@@ -368,6 +368,11 @@ async function renderSidebarHTML() {
368
369
// scroll to start of repo name
370
sidebarLogo.scrollTo(0, 0);
371
+ sidebarLogo.classList.add('notransition');
372
+
373
+ window.setTimeout(() => {
374
+ sidebarLogo.classList.remove('notransition');
375
+ }, 180);
376
377
} else {
378
@@ -376,6 +381,11 @@ async function renderSidebarHTML() {
381
382
383
384
385
386
387
388
379
389
380
390
}
391
0 commit comments