fix(theme): Fix side menu being stuck open and obscuring most of the page (#376)

pull/378/head
simonsan 8 months ago committed by GitHub
parent 675591b4ef
commit 79467dc448
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -23,7 +23,7 @@ site-url = "/patterns/"
git-repository-url = "https://github.com/rust-unofficial/patterns" git-repository-url = "https://github.com/rust-unofficial/patterns"
git-repository-icon = "fa-github" git-repository-icon = "fa-github"
edit-url-template = "https://github.com/rust-unofficial/patterns/edit/main/{path}" edit-url-template = "https://github.com/rust-unofficial/patterns/edit/main/{path}"
additional-css = ["./language-picker.css"] additional-css = ["theme/css/language-picker.css"]
[output.html.fold] [output.html.fold]
enable = true enable = true
@ -33,3 +33,8 @@ level = 1
editable = false editable = false
# [output.linkcheck] # enable the "mdbook-linkcheck" renderer, disabled due to gh-actions # [output.linkcheck] # enable the "mdbook-linkcheck" renderer, disabled due to gh-actions
[output.html.redirect]
# Redirects in the form of "old-path" = "new-path", where the new path
# is relative to the old path.
"functional/lenses.html" = "optics.html"

@ -3,6 +3,11 @@
right: 10px; right: 10px;
} }
[dir="rtl"] #language-list {
left: 10px;
right: auto;
}
#language-list a { #language-list a {
color: inherit; color: inherit;
} }

@ -0,0 +1,26 @@
{{! Move to template code after fixing this issue:
https://github.com/google/mdbook-i18n-helpers/issues/70 }}
<script>
(function () {
// See these pages for details:
// https://developers.google.com/search/docs/crawling-indexing/consolidate-duplicate-urls
// https://developers.google.com/search/docs/crawling-indexing/javascript/javascript-seo-basics
let base = "https://rust-unofficial.github.io/patterns";
{{#if(eq language "en")}}
let canonical_href = `${base}/{{ path }}`;
{{else}}
let canonical_href = `${base}/{{ language }}/{{ path }}`;
{{/if}}
// mdbook gives us a string ending in ".md", we replace it with ".html":
canonical_href = canonical_href.slice(0, -"md".length) + "html";
if (canonical_href.endsWith("/index.html")) {
canonical_href = canonical_href.slice(0, -"index.html".length);
}
let link = document.createElement("link");
link.rel = "canonical";
link.href = canonical_href;
document.head.appendChild(link);
}) ()
</script>

@ -1,58 +1,63 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<html lang="{{ language }}" class="sidebar-visible no-js {{ default_theme }}"> <html lang="{{ language }}" class="{{ default_theme }}" dir="{{ text_direction }}">
<head>
<!-- Book generated using mdBook --> <head>
<meta charset="UTF-8"> <!-- Book generated using mdBook -->
<title>{{ title }}</title> <meta charset="UTF-8">
{{#if is_print }} <title>{{ title }}</title>
<meta name="robots" content="noindex" /> {{#if is_print }}
{{/if}} <meta name="robots" content="noindex" />
{{#if base_url}} {{/if}}
<base href="{{ base_url }}"> {{#if base_url}}
{{/if}} <base href="{{ base_url }}">
{{/if}}
<!-- Custom HTML head -->
{{> head}}
<!-- Custom HTML head -->
<meta name="description" content="{{ description }}"> {{> head}}
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff" /> <meta name="description" content="{{ description }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{#if favicon_svg}} <meta name="theme-color" content="#ffffff" />
<link rel="icon" href="{{ path_to_root }}favicon.svg">
{{/if}} {{#if favicon_svg}}
{{#if favicon_png}} <link rel="icon" href="{{ path_to_root }}favicon.svg">
<link rel="shortcut icon" href="{{ path_to_root }}favicon.png"> {{/if}}
{{/if}} {{#if favicon_png}}
<link rel="stylesheet" href="{{ path_to_root }}css/variables.css"> <link rel="shortcut icon" href="{{ path_to_root }}favicon.png">
<link rel="stylesheet" href="{{ path_to_root }}css/general.css"> {{/if}}
<link rel="stylesheet" href="{{ path_to_root }}css/chrome.css"> <link rel="stylesheet" href="{{ path_to_root }}css/variables.css">
{{#if print_enable}} <link rel="stylesheet" href="{{ path_to_root }}css/general.css">
<link rel="stylesheet" href="{{ path_to_root }}css/print.css" media="print"> <link rel="stylesheet" href="{{ path_to_root }}css/chrome.css">
{{/if}} {{#if print_enable}}
<link rel="stylesheet" href="{{ path_to_root }}css/print.css" media="print">
<!-- Fonts --> {{/if}}
<link rel="stylesheet" href="{{ path_to_root }}FontAwesome/css/font-awesome.css">
{{#if copy_fonts}} <!-- Fonts -->
<link rel="stylesheet" href="{{ path_to_root }}fonts/fonts.css"> <link rel="stylesheet" href="{{ path_to_root }}FontAwesome/css/font-awesome.css">
{{/if}} {{#if copy_fonts}}
<link rel="stylesheet" href="{{ path_to_root }}fonts/fonts.css">
<!-- Highlight.js Stylesheets --> {{/if}}
<link rel="stylesheet" href="{{ path_to_root }}highlight.css">
<link rel="stylesheet" href="{{ path_to_root }}tomorrow-night.css"> <!-- Highlight.js Stylesheets -->
<link rel="stylesheet" href="{{ path_to_root }}ayu-highlight.css"> <link rel="stylesheet" href="{{ path_to_root }}highlight.css">
<link rel="stylesheet" href="{{ path_to_root }}tomorrow-night.css">
<!-- Custom theme stylesheets --> <link rel="stylesheet" href="{{ path_to_root }}ayu-highlight.css">
{{#each additional_css}}
<link rel="stylesheet" href="{{ ../path_to_root }}{{ this }}"> <!-- Custom theme stylesheets -->
{{/each}} {{#each additional_css}}
<link rel="stylesheet" href="{{ ../path_to_root }}{{ this }}">
{{#if mathjax_support}} {{/each}}
<!-- MathJax -->
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> {{#if mathjax_support}}
{{/if}} <!-- MathJax -->
</head> <script async
<body> src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
{{/if}}
</head>
<body class="sidebar-visible no-js">
<div id="body-container">
<!-- Provide site root to javascript --> <!-- Provide site root to javascript -->
<script> <script>
var path_to_root = "{{ path_to_root }}"; var path_to_root = "{{ path_to_root }}";
@ -78,25 +83,32 @@
<!-- Set the theme before any content is loaded, prevents flash --> <!-- Set the theme before any content is loaded, prevents flash -->
<script> <script>
var theme; var theme;
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { } try { theme = localStorage.getItem('mdbook-theme'); } catch (e) { }
if (theme === null || theme === undefined) { theme = default_theme; } if (theme === null || theme === undefined) { theme = default_theme; }
var html = document.querySelector('html'); var html = document.querySelector('html');
html.classList.remove('no-js')
html.classList.remove('{{ default_theme }}') html.classList.remove('{{ default_theme }}')
html.classList.add(theme); html.classList.add(theme);
html.classList.add('js'); var body = document.querySelector('body');
body.classList.remove('no-js')
body.classList.add('js');
</script> </script>
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
<!-- Hide / unhide sidebar before it is displayed --> <!-- Hide / unhide sidebar before it is displayed -->
<script> <script>
var html = document.querySelector('html'); var body = document.querySelector('body');
var sidebar = 'hidden'; var sidebar = null;
var sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
if (document.body.clientWidth >= 1080) { if (document.body.clientWidth >= 1080) {
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { } try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch (e) { }
sidebar = sidebar || 'visible'; sidebar = sidebar || 'visible';
} else {
sidebar = 'hidden';
} }
html.classList.remove('sidebar-visible'); sidebar_toggle.checked = sidebar === 'visible';
html.classList.add("sidebar-" + sidebar); body.classList.remove('sidebar-visible');
body.classList.add("sidebar-" + sidebar);
</script> </script>
<nav id="sidebar" class="sidebar" aria-label="Table of contents"> <nav id="sidebar" class="sidebar" aria-label="Table of contents">
@ -106,17 +118,43 @@
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div> <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
</nav> </nav>
<!-- Track and set sidebar scroll position -->
<script>
var sidebarScrollbox = document.querySelector('#sidebar .sidebar-scrollbox');
sidebarScrollbox.addEventListener('click', function (e) {
if (e.target.tagName === 'A') {
sessionStorage.setItem('sidebar-scroll', sidebarScrollbox.scrollTop);
}
}, { passive: true });
var sidebarScrollTop = sessionStorage.getItem('sidebar-scroll');
sessionStorage.removeItem('sidebar-scroll');
if (sidebarScrollTop) {
// preserve sidebar scroll position when navigating via links within sidebar
sidebarScrollbox.scrollTop = sidebarScrollTop;
} else {
// scroll sidebar to current active section when navigating via "next/previous chapter" buttons
var activeSection = document.querySelector('#sidebar .active');
if (activeSection) {
activeSection.scrollIntoView({ block: 'center' });
}
}
</script>
<div id="page-wrapper" class="page-wrapper"> <div id="page-wrapper" class="page-wrapper">
<div class="page"> <div class="page">
{{> header}} {{> header}}
<div id="menu-bar-hover-placeholder"></div> <div id="menu-bar-hover-placeholder"></div>
<div id="menu-bar" class="menu-bar sticky bordered"> <div id="menu-bar" class="menu-bar sticky">
<div class="left-buttons"> <div class="left-buttons">
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar"> <label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor"
title="Toggle Table of Contents" aria-label="Toggle Table of Contents"
aria-controls="sidebar">
<i class="fa fa-bars"></i> <i class="fa fa-bars"></i>
</button> </label>
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list"> <button id="theme-toggle" class="icon-button" type="button" title="Change theme"
aria-label="Change theme" aria-haspopup="true" aria-expanded="false"
aria-controls="theme-list">
<i class="fa fa-paint-brush"></i> <i class="fa fa-paint-brush"></i>
</button> </button>
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu"> <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
@ -127,7 +165,9 @@
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li> <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
</ul> </ul>
{{#if search_enabled}} {{#if search_enabled}}
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)"
aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S"
aria-controls="searchbar">
<i class="fa fa-search"></i> <i class="fa fa-search"></i>
</button> </button>
{{/if}} {{/if}}
@ -136,17 +176,16 @@
<h1 class="menu-title">{{ book_title }}</h1> <h1 class="menu-title">{{ book_title }}</h1>
<div class="right-buttons"> <div class="right-buttons">
<button id="language-toggle" class="icon-button" type="button" <button id="language-toggle" class="icon-button" type="button" title="Change language"
title="Change language" aria-label="Change language" aria-label="Change language" aria-haspopup="true" aria-expanded="false"
aria-haspopup="true" aria-expanded="false" aria-controls="language-list">
aria-controls="language-list">
<i class="fa fa-globe"></i> <i class="fa fa-globe"></i>
</button> </button>
<ul id="language-list" class="theme-popup" aria-label="Languages" role="menu"> <ul id="language-list" class="theme-popup" aria-label="Languages" role="menu">
<li role="none"><button role="menuitem" class="theme"> <li role="none"><button role="menuitem" class="theme">
<a id="en">English</a> <a id="en">English</a>
</button></li> </button></li>
{{!-- <li role="none"><button role="menuitem" class="theme"> {{!-- <li role="none"><button role="menuitem" class="theme">
<a id="pt-BR">Brazilian Portuguese</a> <a id="pt-BR">Brazilian Portuguese</a>
</button></li> </button></li>
<li role="none"><button role="menuitem" class="theme"> <li role="none"><button role="menuitem" class="theme">
@ -155,31 +194,33 @@
</ul> </ul>
<script> <script>
let langToggle = document.getElementById("language-toggle"); let langToggle = document.getElementById("language-toggle");
let langList = document.getElementById("language-list"); let langList = document.getElementById("language-list");
langToggle.addEventListener("click", (event) => { langToggle.addEventListener("click", (event) => {
langList.style.display = langList.style.display == "block" ? "none" : "block"; langList.style.display = langList.style.display == "block" ? "none" : "block";
}); });
let selectedLang = document.getElementById("{{ language }}"); let selectedLang = document.getElementById("{{ language }}");
selectedLang.parentNode.classList.add("theme-selected"); if (selectedLang) {
selectedLang.parentNode.classList.add("theme-selected");
// The path to the root, taking the current }
// language into account.
{{#if (eq language "en")}} // The path to the root, taking the current
let full_path_to_root = "{{ path_to_root }}"; // language into account.
{{else}} {{#if (eq language "en")}}
let full_path_to_root = "{{ path_to_root }}../"; let full_path_to_root = "{{ path_to_root }}";
{{/if}} {{else}}
// The page path (mdbook only gives us let full_path_to_root = "{{ path_to_root }}../";
// access to the path to the Markdown file). {{/if}}
let path = "{{ path }}".replace(/\.md$/, ".html"); // The page path (mdbook only gives us
for (let lang of langList.querySelectorAll("a")) { // access to the path to the Markdown file).
if (lang.id == "en") { let path = "{{ path }}".replace(/\.md$/, ".html");
lang.href = `${full_path_to_root}${path}`; for (let lang of langList.querySelectorAll("a")) {
} else { if (lang.id == "en") {
lang.href = `${full_path_to_root}${lang.id}/${path}`; lang.href = `${full_path_to_root}${path}`;
} } else {
} lang.href = `${full_path_to_root}${lang.id}/${path}`;
}
}
</script> </script>
{{#if print_enable}} {{#if print_enable}}
@ -194,12 +235,13 @@
{{/if}} {{/if}}
{{#if git_repository_edit_url}} {{#if git_repository_edit_url}}
{{#if (eq language "en")}} {{#if (eq language "en")}}
<a href="{{git_repository_edit_url}}" title="Suggest an edit" aria-label="Suggest an edit"> <a href="{{git_repository_edit_url}}" title="Suggest an edit" aria-label="Suggest an edit"
target="_blank">
<i id="git-edit-button" class="fa fa-edit"></i> <i id="git-edit-button" class="fa fa-edit"></i>
</a> </a>
{{else}} {{else}}
<a href="https://github.com/rust-unofficial/patterns/edit/main/po/{{language}}.po" <a href="https://github.com/rust-unofficial/patterns/edit/main/po/{{language}}.po"
title="Suggest an edit to the translation" aria-label="Suggest an edit to the translation"> title="Suggest an edit to the translation" aria-label="Suggest an edit to the translation" target="_blank">
<i id="git-edit-button" class="fa fa-edit"></i> <i id="git-edit-button" class="fa fa-edit"></i>
</a> </a>
{{/if}} {{/if}}
@ -211,7 +253,8 @@
{{#if search_enabled}} {{#if search_enabled}}
<div id="search-wrapper" class="hidden"> <div id="search-wrapper" class="hidden">
<form id="searchbar-outer" class="searchbar-outer"> <form id="searchbar-outer" class="searchbar-outer">
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header"> <input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..."
aria-controls="searchresults-outer" aria-describedby="searchresults-header">
</form> </form>
<div id="searchresults-outer" class="searchresults-outer hidden"> <div id="searchresults-outer" class="searchresults-outer hidden">
<div id="searchresults-header" class="searchresults-header"></div> <div id="searchresults-header" class="searchresults-header"></div>
@ -223,11 +266,11 @@
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM --> <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
<script> <script>
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible'); document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible'); document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) { Array.from(document.querySelectorAll('#sidebar a')).forEach(function (link) {
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1); link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
}); });
</script> </script>
<div id="content" class="content"> <div id="content" class="content">
@ -238,15 +281,17 @@
<nav class="nav-wrapper" aria-label="Page navigation"> <nav class="nav-wrapper" aria-label="Page navigation">
<!-- Mobile navigation buttons --> <!-- Mobile navigation buttons -->
{{#previous}} {{#previous}}
<a rel="prev" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <a rel="prev" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters previous"
<i class="fa fa-angle-left"></i> title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
</a> <i class="fa fa-angle-left"></i>
</a>
{{/previous}} {{/previous}}
{{#next}} {{#next}}
<a rel="next" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <a rel="next" href="{{ path_to_root }}{{link}}" class="mobile-nav-chapters next"
<i class="fa fa-angle-right"></i> title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
</a> <i class="fa fa-angle-right"></i>
</a>
{{/next}} {{/next}}
<div style="clear: both"></div> <div style="clear: both"></div>
@ -256,15 +301,17 @@
<nav class="nav-wide-wrapper" aria-label="Page navigation"> <nav class="nav-wide-wrapper" aria-label="Page navigation">
{{#previous}} {{#previous}}
<a rel="prev" href="{{ path_to_root }}{{link}}" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left"> <a rel="prev" href="{{ path_to_root }}{{link}}" class="nav-chapters previous" title="Previous chapter"
<i class="fa fa-angle-left"></i> aria-label="Previous chapter" aria-keyshortcuts="Left">
</a> <i class="fa fa-angle-left"></i>
</a>
{{/previous}} {{/previous}}
{{#next}} {{#next}}
<a rel="next" href="{{ path_to_root }}{{link}}" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right"> <a rel="next" href="{{ path_to_root }}{{link}}" class="nav-chapters next" title="Next chapter"
<i class="fa fa-angle-right"></i> aria-label="Next chapter" aria-keyshortcuts="Right">
</a> <i class="fa fa-angle-right"></i>
</a>
{{/next}} {{/next}}
</nav> </nav>
@ -273,50 +320,52 @@
{{#if live_reload_endpoint}} {{#if live_reload_endpoint}}
<!-- Livereload script (if served using the cli tool) --> <!-- Livereload script (if served using the cli tool) -->
<script> <script>
const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:'; const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:';
const wsAddress = wsProtocol + "//" + location.host + "/" + "{{{live_reload_endpoint}}}"; const wsAddress = wsProtocol + "//" + location.host + "/" + "{{{live_reload_endpoint}}}";
const socket = new WebSocket(wsAddress); const socket = new WebSocket(wsAddress);
socket.onmessage = function (event) { socket.onmessage = function (event) {
if (event.data === "reload") { if (event.data === "reload") {
socket.close();
location.reload();
}
};
window.onbeforeunload = function () {
socket.close(); socket.close();
location.reload();
} }
};
window.onbeforeunload = function() {
socket.close();
}
</script> </script>
{{/if}} {{/if}}
{{#if google_analytics}} {{#if google_analytics}}
<!-- Google Analytics Tag --> <!-- Google Analytics Tag -->
<script> <script>
var localAddrs = ["localhost", "127.0.0.1", ""]; var localAddrs = ["localhost", "127.0.0.1", ""];
// make sure we don't activate google analytics if the developer is // make sure we don't activate google analytics if the developer is
// inspecting the book locally... // inspecting the book locally...
if (localAddrs.indexOf(document.location.hostname) === -1) { if (localAddrs.indexOf(document.location.hostname) === -1) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (function (i, s, o, g, r, a, m) {
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) (i[r].q = i[r].q || []).push(arguments)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); }, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
ga('create', '{{google_analytics}}', 'auto'); })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('send', 'pageview');
} ga('create', '{{google_analytics}}', 'auto');
ga('send', 'pageview');
}
</script> </script>
{{/if}} {{/if}}
{{#if playground_line_numbers}} {{#if playground_line_numbers}}
<script> <script>
window.playground_line_numbers = true; window.playground_line_numbers = true;
</script> </script>
{{/if}} {{/if}}
{{#if playground_copyable}} {{#if playground_copyable}}
<script> <script>
window.playground_copyable = true; window.playground_copyable = true;
</script> </script>
{{/if}} {{/if}}
@ -346,20 +395,22 @@
{{#if is_print}} {{#if is_print}}
{{#if mathjax_support}} {{#if mathjax_support}}
<script> <script>
window.addEventListener('load', function() { window.addEventListener('load', function () {
MathJax.Hub.Register.StartupHook('End', function() { MathJax.Hub.Register.StartupHook('End', function () {
window.setTimeout(window.print, 100); window.setTimeout(window.print, 100);
}); });
}); });
</script> </script>
{{else}} {{else}}
<script> <script>
window.addEventListener('load', function() { window.addEventListener('load', function () {
window.setTimeout(window.print, 100); window.setTimeout(window.print, 100);
}); });
</script> </script>
{{/if}} {{/if}}
{{/if}} {{/if}}
</body> </div>
</html> </body>
</html>

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save