Files
sdk-starter-python/static/notify/notify.js
2016-11-14 10:41:18 -06:00

12 lines
341 B
JavaScript

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