Skip to content
This repository has been archived by the owner on Apr 9, 2019. It is now read-only.

Commit

Permalink
ES6 spread
Browse files Browse the repository at this point in the history
  • Loading branch information
aputinski committed Jan 15, 2016
1 parent 9934c66 commit 4926237
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/navigation-controller.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -492,19 +492,19 @@ class NavigationController extends React.Component {
}

pushView() {
this.__pushView.apply(this, arguments);
this.__pushView(...arguments);
}

popView() {
this.__popView.apply(this, arguments);
this.__popView(...arguments);
}

popToRootView() {
this.__popToRootView.apply(this, arguments);
this.__popToRootView(...arguments);
}

setViews() {
this.__setViews.apply(this, arguments);
this.__setViews(...arguments);
}

__renderPrevView() {
Expand Down

0 comments on commit 4926237

Please sign in to comment.