diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-15 21:05:45 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-15 21:05:45 +0800 |
commit | ecb0d77684347c0a3985ffc18b38572220437d91 (patch) | |
tree | 50857260a1ccc61b3fe2d57a02eaf9dd0544ca34 /fg21sim/webui/static/js/configs.js | |
parent | b635a5d93d594d3cbcadb82b3d323f0396a7c92f (diff) | |
download | fg21sim-ecb0d77684347c0a3985ffc18b38572220437d91.tar.bz2 |
webui: Some minor changes
* Change configuration status text from "Valid :)" to "OK"
* Reduce maximum WS connection trials from 100 to 21
* Fix the wrong global name of "g_ws_reconnect"
* Comment the Console "Stop" button, which is currently not implemented
Diffstat (limited to 'fg21sim/webui/static/js/configs.js')
-rw-r--r-- | fg21sim/webui/static/js/configs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fg21sim/webui/static/js/configs.js b/fg21sim/webui/static/js/configs.js index d071be1..b39a43f 100644 --- a/fg21sim/webui/static/js/configs.js +++ b/fg21sim/webui/static/js/configs.js @@ -284,7 +284,7 @@ var updateFormConfigStatus = function () { .addClass("label-success"); target.find(".icon").removeClass("fa-question-circle fa-warning") .addClass("fa-check-circle"); - target.find(".text").text("Valid :)"); + target.find(".text").text("OK"); target.data("validity", true); } }; |