diff --git a/html/js/app.js b/html/js/app.js index bdc2c45..7b8aced 100644 --- a/html/js/app.js +++ b/html/js/app.js @@ -1286,7 +1286,7 @@ $._loader = function(vis) { /** Ask the CGI what APs are visible (async) */ function scanAPs() { - $.get('/wifi/scan', onScan); + $.get('http://'+_root+'/wifi/scan', onScan); } function rescan(time) { @@ -1340,7 +1340,7 @@ $._loader = function(vis) { var abortTmeo; function getStatus() { - xhr.open("GET", "/wifi/connstatus"); + xhr.open("GET", 'http://'+_root+"/wifi/connstatus"); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status >= 200 && xhr.status < 300) { clearTimeout(abortTmeo); diff --git a/html_orig/js/app.js b/html_orig/js/app.js index aae60c2..7b8aced 100644 --- a/html_orig/js/app.js +++ b/html_orig/js/app.js @@ -894,6 +894,7 @@ $._loader = function(vis) { var W, H; var cursor = {a: false, x: 0, y: 0, suppress: false, hidden: false}; var screen = []; + var blinkIval; /** Colors table */ var CLR = [// dark gray #2E3436 @@ -1071,7 +1072,8 @@ $._loader = function(vis) { } /* Cursor blinking */ - setInterval(function() { + clearInterval(blinkIval); + blinkIval = setInterval(function() { cursor.a = !cursor.a; if (cursor.hidden) { cursor.a = false; @@ -1284,7 +1286,7 @@ $._loader = function(vis) { /** Ask the CGI what APs are visible (async) */ function scanAPs() { - $.get('/wifi/scan', onScan); + $.get('http://'+_root+'/wifi/scan', onScan); } function rescan(time) { @@ -1338,7 +1340,7 @@ $._loader = function(vis) { var abortTmeo; function getStatus() { - xhr.open("GET", "/wifi/connstatus"); + xhr.open("GET", 'http://'+_root+"/wifi/connstatus"); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status >= 200 && xhr.status < 300) { clearTimeout(abortTmeo); diff --git a/html_orig/jssrc/wifi.js b/html_orig/jssrc/wifi.js index 8d0ff4c..dd7f370 100644 --- a/html_orig/jssrc/wifi.js +++ b/html_orig/jssrc/wifi.js @@ -75,7 +75,7 @@ /** Ask the CGI what APs are visible (async) */ function scanAPs() { - $.get('/wifi/scan', onScan); + $.get('http://'+_root+'/wifi/scan', onScan); } function rescan(time) { @@ -129,7 +129,7 @@ var abortTmeo; function getStatus() { - xhr.open("GET", "/wifi/connstatus"); + xhr.open("GET", 'http://'+_root+"/wifi/connstatus"); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status >= 200 && xhr.status < 300) { clearTimeout(abortTmeo); diff --git a/html_orig/term_test.php b/html_orig/term_test.php new file mode 100644 index 0000000..6b04bc5 --- /dev/null +++ b/html_orig/term_test.php @@ -0,0 +1,15 @@ + #include #include +#include #include "serial.h" #include "io.h" #include "screen.h"