reset button, refined css, loader, improved timeout calculation

This commit is contained in:
2016-04-01 02:06:24 +02:00
parent 2ffaf1a4af
commit 7a6bdef334
28 changed files with 262 additions and 10319 deletions
+9 -5
View File
@@ -5,12 +5,15 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>FFT - Current analyzer</title>
<title>FFT - Current Analyser</title>
<link href="/css/app.css" rel="stylesheet">
<script src="/js/all.js"></script>
<script>
// server root (or URL) - used for local development with remote AJAX calls
// (this needs CORS working on the target - which I added to esp-httpd)
var _root = "";
</script>
</head>
<body class="page-fft">
<div id="outer">
@@ -18,6 +21,7 @@
<div id="brand" onclick="$('#menu').toggleClass('expanded')">Current Analyser</div>
<a href="/">Home</a><a href="/wifi">WiFi config</a><a href="/waveform">Waveform</a><a href="/fft" class="selected">FFT</a><a href="/about">About</a></nav>
<div id="content">
<img src="/img/loader.gif" alt="Loading…" id="loader">
<h1>FFT</h1>
@@ -79,7 +83,7 @@
$().ready(page_waveform.init('fft'));
</script>
</div>
</div>
</div><!-- content -->
</div><!-- outer -->
</body>
</html>