diff options
-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 4adbd6c..d8f2a60 100644 --- a/web/index.html +++ b/web/index.html @@ -193,7 +193,7 @@ </tr> <tr> <td>1</td> - <td>View Ping map</td> + <td>View super-map/health map</td> </tr> <tr> <td>2</td> @@ -205,7 +205,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 aa72c19..0caac24 100644 --- a/web/js/nms.js +++ b/web/js/nms.js @@ -428,7 +428,7 @@ function detectHandler() { } } } - setUpdater(handler_ping); + setUpdater(handler_health); } function getUrlVars() { @@ -463,7 +463,7 @@ function setMapModeFromN(e,key) { switch(key) { case '1': - setUpdater(handler_ping); + setUpdater(handler_health); break; case '2': setUpdater(handler_uplinks); @@ -472,7 +472,7 @@ function setMapModeFromN(e,key) setUpdater(handler_dhcp); break; case '4': - setUpdater(handler_health); + setUpdater(handler_ping); break; case '5': setUpdater(handler_temp); |