Created
May 27, 2015 15:27
-
-
Save hijonathan/1c1887bfb8f05fbfe289 to your computer and use it in GitHub Desktop.
Appcues RequireJS installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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