onionr/static-data/www/shared/loadabout.js

5 lines
114 B
JavaScript

fetch('shared/about.html')
.then(resp=>resp.text())
.then(function(response) {
aboutText = response
})