CodexCapsule / web.js
LordXido's picture
Update web.js
0a8afdf verified
raw
history blame
194 Bytes
export function loadURL(url){
if(!url.startsWith("http")) url="https://"+url;
document.getElementById("browser").src=url;
}
export function scrapeDOM(){
// future: DOM → world terrain
}