aboutsummaryrefslogtreecommitdiffhomepage
path: root/development/c++filt.html
diff options
context:
space:
mode:
Diffstat (limited to 'development/c++filt.html')
-rw-r--r--development/c++filt.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/development/c++filt.html b/development/c++filt.html
index cf26ce8..c9c486f 100644
--- a/development/c++filt.html
+++ b/development/c++filt.html
@@ -32,6 +32,7 @@
</head>
<body>
+ <div id="body-container">
<!-- Provide site root to javascript -->
<script>
var path_to_root = "../";
@@ -69,10 +70,12 @@
<!-- Hide / unhide sidebar before it is displayed -->
<script>
var html = document.querySelector('html');
- var sidebar = 'hidden';
+ var sidebar = null;
if (document.body.clientWidth >= 1080) {
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
sidebar = sidebar || 'visible';
+ } else {
+ sidebar = 'hidden';
}
html.classList.remove('sidebar-visible');
html.classList.add("sidebar-" + sidebar);
@@ -201,5 +204,6 @@
<!-- Custom JS scripts -->
+ </div>
</body>
</html>