Skip to content

Instantly share code, notes, and snippets.

@svizzari
Last active August 29, 2015 14:01
Show Gist options
  • Save svizzari/5b5475c250cefdd5c4bc to your computer and use it in GitHub Desktop.
Save svizzari/5b5475c250cefdd5c4bc to your computer and use it in GitHub Desktop.
{
events: {
'message.ticket_saved': function(data) {
services.notify('Ticket saved! ' + data.ticketId, 'notice');
},
'ticket.save': function() {
var allowSave = true;
this.message('ticket_saved', { ticketId: 2 }, 'nav_bar');
return allowSave;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment