ebrowser v1.0.40

This commit is contained in:
James Feng Cao 2024-06-28 15:22:22 +08:00
parent 8367164d73
commit 00ccd791ed
3 changed files with 6 additions and 2 deletions

View file

@ -255,7 +255,9 @@ You should have received a copy of the GNU General Public License along with thi
}while(false);
if(inputE === document.activeElement){
if (9===e.keyCode){//tab completion
if (9===e.keyCode){
e.preventDefault();
tabs.children[iTab].focus();
}
return;
}