From 30db56a2e982a15ac0f1c386d612dc04f67bf4da Mon Sep 17 00:00:00 2001 From: idelgado Date: Tue, 20 Jun 2017 15:49:50 -0400 Subject: [PATCH] Add Hello World to body --- static/notify/notify.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static/notify/notify.js b/static/notify/notify.js index 7e7eb3a..2829b02 100644 --- a/static/notify/notify.js +++ b/static/notify/notify.js @@ -2,11 +2,12 @@ $(function() { $('#sendNotificationButton').on('click', function() { $.post('/send-notification', { - identity: $('#identityInput').val() + identity: $('#identityInput').val(), + body: "Hello, World!" }, function(response) { $('#identityInput').val(''); $('#message').html(response.message); console.log(response); }); }); -}); \ No newline at end of file +});