Skip to content

Instantly share code, notes, and snippets.

@lperrin
Created December 19, 2014 12:55
Show Gist options
  • Save lperrin/e4907aa138eea48bcd87 to your computer and use it in GitHub Desktop.
Save lperrin/e4907aa138eea48bcd87 to your computer and use it in GitHub Desktop.
var $front = $('#front')[0].contentWindow;
$('button.assign-self').click(function () {
$front.postMessage({type: 'assign', assignee: 'laurent'}, 'https://app.frontapp.com');
});
$('button.auto-reply').click(function () {
$front.postMessage({
type: 'reply',
body: 'All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy.'
}, 'https://app.frontapp.com');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment