Files
sdk-starter-python/static/notify/notify.js
2017-06-20 15:49:50 -04:00

14 lines
376 B
JavaScript

$(function() {
$('#sendNotificationButton').on('click', function() {
$.post('/send-notification', {
identity: $('#identityInput').val(),
body: "Hello, World!"
}, function(response) {
$('#identityInput').val('');
$('#message').html(response.message);
console.log(response);
});
});
});