mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
use innerHTML in config.js
This commit is contained in:
parent
1239ef166c
commit
032723db19
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ function gen(text) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(d.body){
|
if(d.body){
|
||||||
gen(d.documentElement.outerHTML);
|
gen(d.body.innerHTML);
|
||||||
}else {
|
}else {
|
||||||
let text = "\n".repeat(labels.length-1);
|
let text = "\n".repeat(labels.length-1);
|
||||||
gen(text);
|
gen(text);
|
||||||
|
|
Loading…
Reference in a new issue