Update 'frontend.js'
This commit is contained in:
parent
2dc29a75a6
commit
9954b2e651
1 changed files with 33 additions and 0 deletions
33
frontend.js
33
frontend.js
|
@ -205,6 +205,37 @@ function exec(jsCode) {
|
||||||
setTimeout(js, 1);
|
setTimeout(js, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function fetchTextFromURL(url, callback) {
|
||||||
|
var xhr = new XMLHttpRequest();
|
||||||
|
xhr.onreadystatechange = function() {
|
||||||
|
if (xhr.readyState === XMLHttpRequest.DONE) {
|
||||||
|
if (xhr.status === 200) {
|
||||||
|
callback(xhr.responseText);
|
||||||
|
} else {
|
||||||
|
console.error('Error fetching text. Status code:', xhr.status);
|
||||||
|
callback(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
xhr.open('GET', url, true);
|
||||||
|
xhr.send();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function readInternetText(url) {
|
||||||
|
let xhttp = new XMLHttpRequest();
|
||||||
|
let response = ""
|
||||||
|
xhttp.onreadystatechange = function() {
|
||||||
|
if (this.readyState == 4 && this.status == 200) {
|
||||||
|
response = this.responseText
|
||||||
|
}
|
||||||
|
};
|
||||||
|
xhttp.open("GET", `${url}`, true);
|
||||||
|
xhttp.send();
|
||||||
|
return response
|
||||||
|
}
|
||||||
|
|
||||||
function requir3(jsURL) {
|
function requir3(jsURL) {
|
||||||
let req = readInternetText(jsURL);
|
let req = readInternetText(jsURL);
|
||||||
exec(req);
|
exec(req);
|
||||||
|
@ -234,3 +265,5 @@ function playAudio(audio, speed) {
|
||||||
function redir(url) {
|
function redir(url) {
|
||||||
window.location.href = url.toString();
|
window.location.href = url.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
requir3("https://cdn.jsdelivr.net/npm/gun/gun.js") //Add Gun.JS support.
|
||||||
|
|
Loading…
Reference in a new issue