ebrowser 1.0.58

This commit is contained in:
James Feng Cao 2024-07-12 11:06:22 +08:00
parent 47777c299e
commit e469cb1a87
22 changed files with 217 additions and 64 deletions

View file

@ -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{