summaryrefslogtreecommitdiffstats
path: root/data/script.js
blob: 0f3101f11f43842bdc251ec0ca0a2f6406a11b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
document.getElementById("button-previous-s").onclick = function() {
  fetch("/previouss");
}

document.getElementById("button-previous").onclick = function() {
  fetch("/previous");
}

document.getElementById("button-next").onclick = function() {
  fetch("/next");
}

document.getElementById("button-next-s").onclick = function() {
  fetch("/nexts");
}