Browse Source

ToC

pull/61/head
Jure Šorn 4 years ago
parent
commit
084eaee9dc
1 changed files with 2 additions and 2 deletions
  1. 4
      web/script_2.js

4
web/script_2.js

@ -62,9 +62,9 @@ if (isMobile && window.screen.width < TOC_SCREEN_WIDTH_CUTOFF) {
function updateToc() {
if (isMobile && window.screen.width < TOC_SCREEN_WIDTH_CUTOFF) {
$(`code:contains(ToC)`).html(TOC_MOBILE).css("line-height", "2em");
$(`code:contains(ToC)`).html(TOC_MOBILE).css("line-height", "1.8em");
} else {
$(`code:contains(ToC)`).html(TOC).css("line-height", "1em");
$(`code:contains(ToC)`).html(TOC).css("line-height", "1.8em");
}
}
window.addEventListener("orientationchange", updateToc, false);

Loading…
Cancel
Save