Skip to content

Commit 052e4fd

Browse files
committed
Merge pull request #55 from charpeni/fix-readme
Fix breaking lines in README
2 parents c85e63b + 0b123d9 commit 052e4fd

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -150,18 +150,18 @@ The functions **`this.props.setRightProps`**, **`this.props.setLeftProps`** and
150150

151151
As of 0.7.0 the router acts as a relay for events emitted by the navigator, and extends these to the following list:
152152

153-
`willFocus`: Emitted when a route will focus. Emits the route name as a string.
154-
`didFocus`: Emitted when a route did focus. Emits the route name as a string.
155-
`willPop`: Emitted when a route stack will be popped. Triggered by `Navigator.pop();`
156-
`didPop`: Emitted when a route stack did pop. Triggered by `Navigator.pop();`
157-
`willPush`: Emitted when a new route will be pushed to the route stack. Emits the new route object. Triggered by `Navigator.push(route);`
158-
`didPush`: Emitted when a new route has been pushed to the route stack. Emits the new route object. Triggered by `Navigator.push(route);`
159-
`willResetTo`: Emitted when the route stack will be reset to a given route. Emits the route object. Triggered by `Navigator.resetTo(route);`
160-
`didResetTo`: Emitted when the route stack has been reset to a given route. Emits the route object. Triggered by `Navigator.resetTo(route);`
161-
`willReplace`: Emitted when a route will replace the current one in the route stack. Emits the new route object. Triggered by `Navigator.reset(route);`
162-
`didReplace`: Emitted when a route has replaced the current one in the route stack. Emits the new route object. Triggered by `Navigator.reset(route);`
163-
`willPopToTop`: Emitted when the route stack will be popped to the top. Triggered by `Navigator.popToTop();`
164-
`didPopToTop`: Emitted when the route stack has been popped to the top. Triggered by `Navigator.popToTop();`
153+
- `willFocus`: Emitted when a route will focus. Emits the route name as a string.
154+
- `didFocus`: Emitted when a route did focus. Emits the route name as a string.
155+
- `willPop`: Emitted when a route stack will be popped. Triggered by `Navigator.pop();`
156+
- `didPop`: Emitted when a route stack did pop. Triggered by `Navigator.pop();`
157+
- `willPush`: Emitted when a new route will be pushed to the route stack. Emits the new route object. Triggered by `Navigator.push(route);`
158+
- `didPush`: Emitted when a new route has been pushed to the route stack. Emits the new route object. Triggered by `Navigator.push(route);`
159+
- `willResetTo`: Emitted when the route stack will be reset to a given route. Emits the route object. Triggered by `Navigator.resetTo(route);`
160+
- `didResetTo`: Emitted when the route stack has been reset to a given route. Emits the route object. Triggered by `Navigator.resetTo(route);`
161+
- `willReplace`: Emitted when a route will replace the current one in the route stack. Emits the new route object. Triggered by `Navigator.reset(route);`
162+
- `didReplace`: Emitted when a route has replaced the current one in the route stack. Emits the new route object. Triggered by `Navigator.reset(route);`
163+
- `willPopToTop`: Emitted when the route stack will be popped to the top. Triggered by `Navigator.popToTop();`
164+
- `didPopToTop`: Emitted when the route stack has been popped to the top. Triggered by `Navigator.popToTop();`
165165

166166
You can listen to these events by adding an event listener as such:
167167

0 commit comments

Comments
 (0)