diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/index.html | 4 | ||||
-rw-r--r-- | web/js/nms.js | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/web/index.html b/web/index.html index 63ae4c3..aeb26b3 100644 --- a/web/index.html +++ b/web/index.html @@ -190,7 +190,7 @@ </tr> <tr> <td>1</td> - <td>View Ping map</td> + <td>View super-map/health map</td> </tr> <tr> <td>2</td> @@ -202,7 +202,7 @@ </tr> <tr> <td>4</td> - <td>View super-map</td> + <td>View Ping map</td> </tr> <tr> <td>5</td> diff --git a/web/js/nms.js b/web/js/nms.js index edb18b2..5421f2f 100644 --- a/web/js/nms.js +++ b/web/js/nms.js @@ -427,7 +427,7 @@ function detectHandler() { } } } - setUpdater(handler_ping); + setUpdater(handler_health); } function getUrlVars() { @@ -462,7 +462,7 @@ function setMapModeFromN(e,key) { switch(key) { case '1': - setUpdater(handler_ping); + setUpdater(handler_health); break; case '2': setUpdater(handler_uplinks); @@ -471,7 +471,7 @@ function setMapModeFromN(e,key) setUpdater(handler_dhcp); break; case '4': - setUpdater(handler_health); + setUpdater(handler_ping); break; case '5': setUpdater(handler_temp); |