Skip to content

Commit

Permalink
Minor fix in example: remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
evanx committed Mar 9, 2015
1 parent f7b86bc commit 4a0782b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/master-detail/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ var Contact = React.createClass({

mixins: [ Router.Navigation, Router.State ],

getStateFromStore: function (id) {
id = this.getParams().id;
getStateFromStore: function () {
var id = this.getParams().id;
return {
contact: ContactStore.getContact(id)
};
Expand Down

0 comments on commit 4a0782b

Please sign in to comment.