minor changes

main
Gabriel 2 years ago
parent 208eb9eea3
commit 5a8705b256

@ -3,14 +3,12 @@
"name": "My website",
"image": "",
"location": "https://my.website",
"resources": [
{
"resources": [{
"label": "RSS Feed",
"icon": "",
"location": "https://my.website.com/rss.xml",
"description": "Stay up to date!"
}
],
"description": "<img src='example.com'>"
}],
"connection_groups": {
"Group1": [
"https://libresolutions.network"

@ -1,12 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/theme.css">
<title>Interverse</title>
<script src="//unpkg.com/alpinejs" defer></script>
<! consider hosting on your site>
<script src="https://unpkg.com/alpinejs" defer></script>
<script src="/helper.js"></script>
</head>
<body>
<div class="interverse" x-data x-if="Alpine.store('data')">
<div id="interverse-details">
@ -93,8 +95,7 @@
if (getUrlParameter('s') && getUrlParameter("url")) {
var uri = "";
main_url = getUrlParameter('s') + "://" + getUrlParameter("url") + '/.well-known/interverse';
}
else{
} else {
if (getUrlParameter('url')) {
main_url = "https://" + getUrlParameter('url') + '/.well-known/interverse';
}
@ -121,8 +122,7 @@
dat = JSON.parse(e.target.response);
console.log(dat);
Alpine.store(dat['location'], dat);
}
catch{
} catch {
console.log("Failed to parse connection JSON");
}
});
@ -130,7 +130,6 @@
});
}
</script>
</body>

Loading…
Cancel
Save