-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
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
Update language spanish, add placeholders in signup, add behavior fromWhere #300
base: master
Are you sure you want to change the base?
Conversation
Solution the error in the placeholder for email, change placeholder="{{emailPlaceholder}} by placeholder="{{t9n 'email'}} Exception in template helper: ReferenceError: t9n is not defined Object.AccountsEntry.entrySignInHelpers.emailPlaceholder
add placeholders placeholder="{{t9n 'email'}} placeholder="{{t9n 'username'}}" placeholder="{{t9n 'signupCode'}}"
Apply correct way the lenguage spanish
add new property, fromWhere:false , with this only redirects to dasboard by default, not redirects a route before log-in
add condition for that behavior from Where
+1 to merge it. Because this is fix for this issue: |
+1 to merge this. Having the same issue as others are with this. |
I don't think this will work anymore anyway. The existing functionality is now broken as far as I can tell in a number of ways starting here and below:
finally: [_.each Router.routes, (route)->] I'm not 100% sure cause I don't understand iron-router that well, but I believe, Router.routes returns an array of middle-ware functions that don't exactly work with the stuff inside each... not sure how to fix this though any ideas on the last part? |
here's what ended up working for me
note that i used |
Solution the error in the placeholder for email, change
placeholder="{{emailPlaceholder}} by placeholder="{{t9n 'email'}}
Exception in template helper: ReferenceError: t9n is not defined
Object.AccountsEntry.entrySignInHelpers.emailPlaceholder
add placeholders
placeholder="{{t9n 'email'}}
placeholder="{{t9n 'username'}}"
placeholder="{{t9n 'signupCode'}}"
Apply correct way the lenguage spanish
add new property, fromWhere:false , with this only redirects to dasboard by default, not redirects a route before log-in
add condition for that behavior from Where