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 e469b37 commit 57f3819Copy full SHA for 57f3819
filebrowser.js
@@ -148,10 +148,15 @@ async function renderSidebarHTML() {
148
149
// scroll to end of title
150
151
- sidebarTitle.classList.add('notransition');
152
- window.setTimeout(() => {
153
- sidebarTitle.classList.remove('notransition');
154
- }, 180);
+ if (titleAnimation == '') {
+
+ sidebarTitle.classList.add('notransition');
155
+ window.setTimeout(() => {
156
+ sidebarTitle.classList.remove('notransition');
157
+ }, 180);
158
159
+ }
160
161
sidebarTitle.children[0].scrollTo({
162
left: sidebarTitle.children[0].scrollWidth - sidebarTitle.children[0].offsetLeft,
0 commit comments