We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To add the account-ui on the page on a normal meteor app I just need to add v to the HTML, How do I do the same with Angular enabled?
The text was updated successfully, but these errors were encountered:
I am having the same problem too. To circumvent the issue, I am using http://blog.benmcmahen.com/post/41741539120/building-a-customized-accounts-ui-for-meteor in the meantime
Sorry, something went wrong.
I have a partially working solution by rendering the accounts-ui template:
Install accounts-ui dropdown
mrt add accounts-ui-bootstrap-dropdown
Add this to the template:
<div id="loginTemplate"></div>
And add this to the controller:
Coffeescript version:
loginTemplateChild = Meteor.render () -> Template._loginButtons() $('#loginTemplate')[0].appendChild(loginTemplateChild)
Javascript version:
loginTemplateChild = Meteor.render(function() { return Template._loginButtons(); }); $('#loginTemplate')[0].appendChild(loginTemplateChild);
No branches or pull requests
To add the account-ui on the page on a normal meteor app I just need to add v to the HTML, How do I do the same with Angular enabled?
The text was updated successfully, but these errors were encountered: