Skip to content

Commit

Permalink
update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanflorence committed Oct 6, 2014
1 parent 7f66db2 commit a454e72
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/data-flow/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var Link = Router.Link;

var App = React.createClass({

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

getInitialState: function() {
return {
Expand Down
4 changes: 2 additions & 2 deletions examples/master-detail/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ var Index = React.createClass({

var Contact = React.createClass({

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

getStateFromStore: function(props) {
props = props || this.props;
Expand Down Expand Up @@ -120,7 +120,7 @@ var Contact = React.createClass({

var NewContact = React.createClass({

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

createContact: function(event) {
event.preventDefault();
Expand Down
2 changes: 1 addition & 1 deletion examples/transitions/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var Dashboard = React.createClass({

var Form = React.createClass({

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

statics: {
willTransitionFrom: function(transition, component) {
Expand Down

0 comments on commit a454e72

Please sign in to comment.