diff --git a/docs/angular/navigation.md b/docs/angular/navigation.md index eb05502309c..9ad675058a0 100644 --- a/docs/angular/navigation.md +++ b/docs/angular/navigation.md @@ -118,10 +118,6 @@ export class LoginComponent { Both options provide the same navigation mechanism, just fitting different use cases. -:::note -A note on navigation with relative URLs: Currently, to support multiple navigation stacks, relative URLs are something not supported -::: - ### Navigating using LocationStrategy.historyGo Angular Router has a [LocationStrategy.historyGo](https://angular.io/api/common/LocationStrategy#historyGo) method that allows developers to move forward or backward through the application history. Let's take a look at an example. diff --git a/versioned_docs/version-v5/angular/navigation.md b/versioned_docs/version-v5/angular/navigation.md index 0e5148442b8..9dcbcc88949 100644 --- a/versioned_docs/version-v5/angular/navigation.md +++ b/versioned_docs/version-v5/angular/navigation.md @@ -109,10 +109,6 @@ export class LoginComponent { Both options provide the same navigation mechanism, just fitting different use cases. -:::note -A note on navigation with relative URLs: Currently, to support multiple navigation stacks, relative URLs are something not supported -::: - ## Lazy loading routes Now the current way our routes are setup makes it so they are included in the same chunk as the root app.module, which is not ideal. Instead, the router has a setup that allows the components to be isolated to their own chunks. diff --git a/versioned_docs/version-v6/angular/navigation.md b/versioned_docs/version-v6/angular/navigation.md index fd50cc3e29c..9ac7059bde0 100644 --- a/versioned_docs/version-v6/angular/navigation.md +++ b/versioned_docs/version-v6/angular/navigation.md @@ -118,10 +118,6 @@ export class LoginComponent { Both options provide the same navigation mechanism, just fitting different use cases. -:::note -A note on navigation with relative URLs: Currently, to support multiple navigation stacks, relative URLs are something not supported -::: - ### Navigating using LocationStrategy.historyGo Angular Router has a [LocationStrategy.historyGo](https://angular.io/api/common/LocationStrategy#historyGo) method that allows developers to move forward or backward through the application history. Let's take a look at an example.