13 lines
331 B
JavaScript
13 lines
331 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);
|
|
});
|
|
});
|
|
});
|