rebuilding Tue Sep 13 10:26:00 AM CST 2022

This commit is contained in:
James Feng Cao 2022-09-13 10:26:01 +08:00
parent cdbea0e775
commit a0bd1d23c8
2 changed files with 3 additions and 11 deletions

View file

@ -89,7 +89,7 @@
};
{
let v = location.hash.substring(6);
let v = decodeURIComponent(location.hash.substring(6));
wordinput.value = v;
}
@ -97,6 +97,7 @@
let filenames = location.search.substring(6);
window.onload = function(){
if(filenames.length>0){
filenames = decodeURIComponent(filenames);
let clickurl = "i:5fdictinput.click():"+filenames;
location.href=clickurl;
//setTimeout(()=>{dictinput.dispatchEvent(new Event('change', {'bubbles': true}));},100);