summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/index.html b/index.html
index 8f2f7be..bc4fc18 100644
--- a/index.html
+++ b/index.html
@@ -30,15 +30,15 @@ function notify() {
msg = new Notification("あなたはチンチンが大好き");
}
//performing an https POST on the backend
-$.post("https://" + window.hostname.location + "/api/msg",
- {last-displayed: 0},// data to submit
+$.post("https://" + window.location.hostname + "/api/msg",
+ {ld : 0},// data to submit
function(data, status, jqXHR) { //callback function
if (data == ""){
return;
}
console.log(data);
}
-}
+);
</script>
<!--- Permission display-->
<p class="pd">You have not granted notification permissions</p>