9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
var headerModel=0;
|
|
|
|
function createUi(html){
|
|
return fetch(html)
|
|
.then(response=>response.text())
|
|
.then(htmlText=>{
|
|
return htmlText;
|
|
})
|
|
} |