Fossil SCM
Increased the transition delay to make the initial drop-down animation happen in Firefox 62.
Commit
8918a8a80a488a97ee6891f023396a920a8ed3a44b7627e8b4420f706cbc7eae
Parent
90bd66750d539ae…
1 file changed
+1
-1
+1
-1
| --- skins/default/footer.txt | ||
| +++ skins/default/footer.txt | ||
| @@ -45,11 +45,11 @@ | ||
| 45 | 45 | // https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions#JavaScript_examples |
| 46 | 46 | function showPanel() { |
| 47 | 47 | setTimeout(function() { |
| 48 | 48 | panel.style.maxHeight = panelHeight; |
| 49 | 49 | panel.style.border = panelBorder; |
| 50 | - }, 10); | |
| 50 | + }, 25); // 10 is insufficient with Firefox 62 | |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | // Click handler for the hamburger button. |
| 54 | 54 | var needSitemapHTML = true; |
| 55 | 55 | document.querySelector("div.mainmenu > a").onclick = function() { |
| 56 | 56 |
| --- skins/default/footer.txt | |
| +++ skins/default/footer.txt | |
| @@ -45,11 +45,11 @@ | |
| 45 | // https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions#JavaScript_examples |
| 46 | function showPanel() { |
| 47 | setTimeout(function() { |
| 48 | panel.style.maxHeight = panelHeight; |
| 49 | panel.style.border = panelBorder; |
| 50 | }, 10); |
| 51 | } |
| 52 | |
| 53 | // Click handler for the hamburger button. |
| 54 | var needSitemapHTML = true; |
| 55 | document.querySelector("div.mainmenu > a").onclick = function() { |
| 56 |
| --- skins/default/footer.txt | |
| +++ skins/default/footer.txt | |
| @@ -45,11 +45,11 @@ | |
| 45 | // https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions#JavaScript_examples |
| 46 | function showPanel() { |
| 47 | setTimeout(function() { |
| 48 | panel.style.maxHeight = panelHeight; |
| 49 | panel.style.border = panelBorder; |
| 50 | }, 25); // 10 is insufficient with Firefox 62 |
| 51 | } |
| 52 | |
| 53 | // Click handler for the hamburger button. |
| 54 | var needSitemapHTML = true; |
| 55 | document.querySelector("div.mainmenu > a").onclick = function() { |
| 56 |