aboutsummaryrefslogtreecommitdiff
path: root/motto/public
diff options
context:
space:
mode:
authorLarsVomMars2020-09-30 20:33:00 +0200
committerLarsVomMars2020-09-30 20:33:00 +0200
commitc00c6f32645c8d0bc48649ba2ccacd72a51b8c96 (patch)
treed734b647651988a7520e422b83dfe0235aa49f1a /motto/public
parent4f6fe9fc1033e388c5cdf1dab6afa799547b30ef (diff)
New motto
Diffstat (limited to 'motto/public')
-rw-r--r--motto/public/script.js16
-rw-r--r--motto/public/style.css4
2 files changed, 14 insertions, 6 deletions
diff --git a/motto/public/script.js b/motto/public/script.js
index 7b27ce0..a4e75e9 100644
--- a/motto/public/script.js
+++ b/motto/public/script.js
@@ -4,7 +4,7 @@ document.querySelector(".wrapper").style.opacity = 1;
function send(id, vote) {
var xhp = new XMLHttpRequest();
- xhp.open("POST", "/api/vote");
+ xhp.open("POST", "api/vote");
xhp.setRequestHeader("Content-type", "application/json");
xhp.onreadystatechange = () => {
if (xhp.readyState == 4 && xhp.status == 200) console.log(xhp.responseText);
@@ -16,7 +16,7 @@ function send(id, vote) {
function add(main, description) {
var xhp = new XMLHttpRequest();
- xhp.open("POST", "/api/add");
+ xhp.open("POST", "api/add");
xhp.setRequestHeader("Content-type", "application/json");
xhp.onreadystatechange = () => {
if (xhp.readyState == 4 && xhp.status == 200) console.log(xhp.responseText);
@@ -141,7 +141,7 @@ function createButtonListener(yay) {
}
var xhp = new XMLHttpRequest();
-xhp.open("GET", "/api/list");
+xhp.open("GET", "api/list");
xhp.onreadystatechange = () => {
if (xhp.readyState == 4 && xhp.status == 200) {
let list = JSON.parse(xhp.responseText);
@@ -207,6 +207,10 @@ document.getElementById("aah").addEventListener("click", () => {
document.getElementById("all").addEventListener("click", toggleOverview);
document.getElementById("go").addEventListener("click", toggleOverview);
-addEventListener("load", () => {
- window.scrollTo(1, 0);
-}, false);
+addEventListener(
+ "load",
+ () => {
+ window.scrollTo(1, 0);
+ },
+ false,
+);
diff --git a/motto/public/style.css b/motto/public/style.css
index 143f2db..22532da 100644
--- a/motto/public/style.css
+++ b/motto/public/style.css
@@ -124,6 +124,10 @@ body {
vertical-align: middle;
}
+.top_button img {
+ cursor: pointer;
+}
+
@media only screen and (max-width: 600px) {
.fab button {
margin: 10px;