From 0a572139015e1c0cbbfb8cb351d15f20675f3595 Mon Sep 17 00:00:00 2001 From: mhartington Date: Fri, 29 Jul 2016 12:46:16 -0500 Subject: [PATCH] docs(navController): make popTo private Closes https://github.com/driftyco/ionic-site/issues/615 --- src/components/nav/nav-controller.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/nav/nav-controller.ts b/src/components/nav/nav-controller.ts index e952bb765b..1b152bd3c0 100644 --- a/src/components/nav/nav-controller.ts +++ b/src/components/nav/nav-controller.ts @@ -288,6 +288,7 @@ export abstract class NavController { abstract popToRoot(opts?: NavOptions, done?: Function): Promise; /** + * @private * Pop to a specific view in the history stack. * * @param {ViewController} view to pop to @@ -383,4 +384,4 @@ export abstract class NavController { */ abstract canGoBack(): boolean; -} \ No newline at end of file +}