Created
January 11, 2015 04:58
-
-
Save bradvogel/9da6fa2836bf6f7e60a0 to your computer and use it in GitHub Desktop.
test files
This file contains 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
Accounts.onLogin(function(e) { | |
// Do this async so we don't block login. | |
Meteor.setTimeout(function() { | |
var userId = e.user._id; | |
maybeSyncGoogleContacts(userId); | |
}, 100); | |
}); |
This file contains 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
Accounts.onLogin(function(e) { | |
// Do this async so we don't block login. | |
Meteor.setTimeout(function() { | |
var userId = e.user._id; | |
maybeSyncGoogleContacts(userId); | |
}, 100); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment