mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
ebrowser 1.0.58
This commit is contained in:
parent
47777c299e
commit
e469cb1a87
22 changed files with 217 additions and 64 deletions
|
@ -345,8 +345,7 @@ You should have received a copy of the GNU General Public License along with thi
|
|||
setTimeout(()=>{
|
||||
if(lastKeys.length != keyLen) return;
|
||||
lastKeys = null;
|
||||
for(var cmd of cmds.split("\n"))
|
||||
handleQuery(cmd);
|
||||
handleQueries(cmds);
|
||||
}, 500);
|
||||
}
|
||||
}
|
||||
|
@ -587,6 +586,10 @@ You should have received a copy of the GNU General Public License along with thi
|
|||
}
|
||||
}
|
||||
}
|
||||
function handleQueries(cmds){
|
||||
for(var cmd of cmds.split("\n"))
|
||||
handleQuery(cmd);
|
||||
}
|
||||
async function jsonAppend(filePath, charcode, str){
|
||||
let fd;
|
||||
try{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue