Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
BaseRouter bug fix - never call this["_"+action](name,props); in route
  • Loading branch information
jungsoo108 committed Feb 18, 2016
commit 29e9a8027b7ea8b85b9a9c5663965629c95607f9
2 changes: 1 addition & 1 deletion BaseRouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default class BaseRouter {
} else {
throw new Error("No handler "+handler+" for route="+name);
}
if (!this["_"+action]) {
if (this["_"+action]) {
this["_" + action](name, props);
}
return true;
Expand Down