Skip to content

Instantly share code, notes, and snippets.

@totango
Created February 27, 2012 23:18
Show Gist options
  • Save totango/1927855 to your computer and use it in GitHub Desktop.
Save totango/1927855 to your computer and use it in GitHub Desktop.
appbox
<script>
var appbox_options = {
user_id : "user@yourapp.com", //todo: replace with user email/id
app_id : 123456, //todo: replace with app_id
};
(function() {
var ab = document.createElement('script'); ab.type = 'text/javascript'; ab.async = true;
ab.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'www.appboxjs.com/appbox.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ab, s);
})();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment