diff --git a/docs/0.10/navigator.html b/docs/0.10/navigator.html index bc06e541e7d..f47f36a9d17 100644 --- a/docs/0.10/navigator.html +++ b/docs/0.10/navigator.html @@ -358,7 +358,7 @@

Jump backward without unmounting the current scene.


-

XXXX()

+

push()

push((route: object));
 

Navigate forward to a new scene, squashing any scenes that you could jump forward to.

@@ -372,7 +372,7 @@
-

pop()

+

popN()

popN((n: number));
 

Go back N scenes at once. When N=1, behavior matches pop(). When N is invalid (negative or bigger than current routes count), do nothing.

@@ -386,7 +386,7 @@
-

pop()

+

pop()

pop();
 

Transition back and unmount the current scene.

@@ -454,7 +454,7 @@
-

replacePreviousAndPopXXXX()

+

replacePreviousAndPop()

replacePreviousAndPop((route: object));
 

Replace the previous scene and get to it.

@@ -486,7 +486,7 @@
getCurrentRoutes();
 

Returns the current list of routes.

-
← ModalNext →