5 lines
114 B
JavaScript
5 lines
114 B
JavaScript
|
fetch('shared/about.html')
|
||
|
.then(resp=>resp.text())
|
||
|
.then(function(response) {
|
||
|
aboutText = response
|
||
|
})
|