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
If the action is defined in controller but not controller.actions, Uncaught Error: Nothing handled the action 'function ...' will appear.
Uncaught Error: Nothing handled the action 'function ...'
Demo: http://jsfiddle.net/indream/Fu5uG/
This can fix by replace https://github.com/emberjs/ember.js/blob/master/packages/ember-routing/lib/helpers/action.js#L92 with if(typeof actionName === 'undefined' || typeof actionName === 'function') {
if(typeof actionName === 'undefined' || typeof actionName === 'function') {
Reference: #3936
The text was updated successfully, but these errors were encountered:
@inDream - Thank you for reporting! Should be fixed in #4336.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
If the action is defined in controller but not controller.actions,
Uncaught Error: Nothing handled the action 'function ...'
will appear.Demo: http://jsfiddle.net/indream/Fu5uG/
This can fix by replace https://github.com/emberjs/ember.js/blob/master/packages/ember-routing/lib/helpers/action.js#L92 with
if(typeof actionName === 'undefined' || typeof actionName === 'function') {
Reference: #3936
The text was updated successfully, but these errors were encountered: