mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-25 06:46:10 +02:00
improved wifi scan (must be fired now, not automatically any more)
This commit is contained in:
parent
4ad6219be7
commit
3764aa4ce1
7 changed files with 53 additions and 18 deletions
|
@ -77,6 +77,13 @@ function sel(name, opt, selId) {
|
|||
return e;
|
||||
}
|
||||
|
||||
function selDelAllOpt(sel) {
|
||||
var i, l = sel.options.length - 1;
|
||||
for(i = l; i >= 0; i--) {
|
||||
sel.remove(i);
|
||||
}
|
||||
}
|
||||
|
||||
function opt(val, html) {
|
||||
o = document.createElement('option');
|
||||
o.value = val;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue