21 lines
643 B
JavaScript
21 lines
643 B
JavaScript
//
|
|
//
|
|
function NavInit() {
|
|
nav = document.getElementById('nav');
|
|
var txt = "<table>";
|
|
txt += "<tr valign='top'>";
|
|
txt += " <td>NAV:</td>";
|
|
txt += " <td>";
|
|
txt += " <a href='index.htm'>Home</a> | ";
|
|
txt += " <a href='config'>Config</a> | ";
|
|
txt += " <a href='scan'>Scan</a> | ";
|
|
txt += " <a href='rssi.htm'>RSSI</a> | ";
|
|
txt += " <a href='curr.htm'>Current</a> | ";
|
|
txt += " <a href='config?ssid=reset&pass=reset' onclick=\\\"return confirm('Are you sure?')\\\">Factory Reset</a> | ";
|
|
txt += " <a href='about.htm'>About</a>";
|
|
txt += " </td>";
|
|
txt += "</tr>";
|
|
txt += "</table>";
|
|
nav.innerHTML = txt;
|
|
}
|