Skip to content

Instantly share code, notes, and snippets.

@hijonathan
Created May 27, 2015 15:27
Show Gist options
  • Select an option

  • Save hijonathan/1c1887bfb8f05fbfe289 to your computer and use it in GitHub Desktop.

Select an option

Save hijonathan/1c1887bfb8f05fbfe289 to your computer and use it in GitHub Desktop.
Appcues RequireJS installation
requirejs.config({
"paths": {
"appcues": "//fast.appcues.com/<your_appcues_id>"
}
});
// Later in your app.
define(['models/user', 'appcues'], function(user, Appcues) {
Appcues.identify(user.id, {
email: user.email,
name: user.first_name + ' ' + user.last_name
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment