Fixed twitter generator strings (was google instead of twitter)

This commit is contained in:
Sahat Yalkabov
2014-04-15 12:32:38 -04:00
parent 2d3f3e1af9
commit 14e643ade5

View File

@ -634,18 +634,18 @@ inquirer.prompt({
var twitterButton = M(function() { var twitterButton = M(function() {
/*** /***
a.btn.btn-block.btn-google-plus.btn-social(href='/auth/google') a.btn.btn-block.btn-twitter-plus.btn-social(href='/auth/twitter')
i.fa.fa-google-plus i.fa.fa-twitter
| Sign in with Google | Sign in with Twitter
***/ ***/
}); });
var twitterLinkUnlink = M(function() { var twitterLinkUnlink = M(function() {
/*** /***
if user.google if user.twitter
p: a.text-danger(href='/account/unlink/google') Unlink your Google account p: a.text-danger(href='/account/unlink/twitter') Unlink your Twitter account
else else
p: a(href='/auth/google') Link your Google account p: a(href='/auth/twitter') Link your Twitter account
***/ ***/
}); });
var twitterModel = ' twitter: String,'; var twitterModel = ' twitter: String,';