Check if user is online

This commit is contained in:
smartfridge 2021-05-04 10:54:28 +02:00
parent 15eb2f867f
commit 5e57963192
2 changed files with 22 additions and 2 deletions

View File

@ -63,5 +63,25 @@
<source src="https://discord.com/assets/0bdc0497eb3a19e66f2b1e3d5741634c.webm" type="video/webm">
</video>
</body>
<p id=checkOnline></p>
<script>
var ifConnected = window.navigator.onLine;
if (ifConnected) {
document.getElementById("checkOnline").innerHTML = "🟢Online";
document.getElementById("checkOnline").style.color = "green";
} else {
document.getElementById("checkOnline").innerHTML = "🔴 Check your internet connection!";
document.getElementById("checkOnline").style.color = "red";
}
setInterval(function(){
var ifConnected = window.navigator.onLine;
if (ifConnected) {
document.getElementById("checkOnline").innerHTML = "🟢Online";
document.getElementById("checkOnline").style.color = "green";
} else {
document.getElementById("checkOnline").innerHTML = "🔴 Check your internet connection!";
document.getElementById("checkOnline").style.color = "red";
}
}, 3000);
</script>
</html>

View File

@ -40,7 +40,7 @@ app.whenReady().then(() => {
session
.fromPartition("some-partition")
.setPermissionRequestHandler((webContents, permission, callback) => {
const url = webContents.getURL();
const url = webContents.getURL(); //unused?
if (permission === "notifications") {
// Approves the permissions request