-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (27 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/common.css"/>
<link rel="stylesheet" href="css/fiddle-app.css"/>
<meta charset="utf-8"/>
<script>
function adjustScreen() {
document.body.classList.toggle("default-view", document.body.clientWidth <= 600);
document.body.classList.toggle("dark-theme", location.hash == "#dark-theme");
}
function toggleViews() {
document.body.classList.toggle("sidebar-view");
document.body.classList.toggle("default-view");
}
window.addEventListener("DOMContentLoaded", adjustScreen);
window.addEventListener("resize", adjustScreen);
</script>
<script crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/react/15.6.0/react.js"></script>
<script crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/react/15.6.0/react-dom.js"></script>
<script src="js/fiddle-app.js" async></script>
</head>
<body>
<button id="responsive-sidebar-toggle" onclick="toggleViews()"><span>☰</span></button>
<div id="content"></div>
</body>
</html>