mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-31 01:36:11 +02:00
add parseESP in all html
This commit is contained in:
parent
fbf75d1e9e
commit
834c8115a8
5 changed files with 7 additions and 1 deletions
|
@ -96,6 +96,7 @@
|
||||||
|
|
||||||
if(true == exeOnce) {
|
if(true == exeOnce) {
|
||||||
parseVersion(obj);
|
parseVersion(obj);
|
||||||
|
parseESP(obj);
|
||||||
window.setInterval("getAjax('/api/system', parseSys)", 10000);
|
window.setInterval("getAjax('/api/system', parseSys)", 10000);
|
||||||
exeOnce = false;
|
exeOnce = false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -332,6 +332,7 @@
|
||||||
if(!obj["pwd_set"])
|
if(!obj["pwd_set"])
|
||||||
e.value = "";
|
e.value = "";
|
||||||
parseVersion(obj);
|
parseVersion(obj);
|
||||||
|
parseESP(obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseStaticIp(obj) {
|
function parseStaticIp(obj) {
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
function parseSys(obj) {
|
function parseSys(obj) {
|
||||||
parseVersion(obj);
|
parseVersion(obj);
|
||||||
|
parseESP(obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
function parse(obj) {
|
function parse(obj) {
|
||||||
|
|
|
@ -48,6 +48,7 @@
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
function parseSys(obj) {
|
function parseSys(obj) {
|
||||||
parseVersion(obj);
|
parseVersion(obj);
|
||||||
|
parseESP(obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
function parse(obj) {
|
function parse(obj) {
|
||||||
|
|
|
@ -43,8 +43,10 @@
|
||||||
var exeOnce = true;
|
var exeOnce = true;
|
||||||
|
|
||||||
function parseSys(obj) {
|
function parseSys(obj) {
|
||||||
if(true == exeOnce)
|
if(true == exeOnce){
|
||||||
parseVersion(obj);
|
parseVersion(obj);
|
||||||
|
parseESP(obj);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseIv(obj, root) {
|
function parseIv(obj, root) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue