aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-11-28 20:32:06 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2022-11-28 20:32:06 +0100
commit13e4bf98eddc9b407aee42518ef0cb6356ccacdb (patch)
treea8e2de501368e34eb790bdde0818e1a9d4d7b12c
parentREADME: update (diff)
downloadwg-api-web-1.0.1.tar.gz
wg-api-web-1.0.1.zip
html: set document titlev1.0.1
-rw-r--r--html/index.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/html/index.html b/html/index.html
index 25a1651..d8ce009 100644
--- a/html/index.html
+++ b/html/index.html
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
+ <title>wg-api-web</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/gh/tofsjonas/sortable/sortable-base.min.css" rel="stylesheet">
@@ -351,7 +352,9 @@ function peers_remove_all() {
function device_show() {
let formatter = new Device();
let data = JSON.parse(this.responseText);
- formatter.update(data['result']['device']);
+ data = data['result']['device'];
+ document.title = `${data['name']} - ${data['num_peers']} peer(s) - wg-api-web`;
+ formatter.update(data);
}
function peers_show() {