Skip to content

Commit 3eabe9e

Browse files
committed
Deploying to gh-pages from @ d4a6487 🚀
1 parent 4b252be commit 3eabe9e

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

js/routes/routes_index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/search/search_index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/AppRoutingModule.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,27 +74,28 @@ <h3>File</h3>
7474
<div class="tab-pane fade tab-source-code" id="c-source">
7575
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { NgModule } from &#x27;@angular/core&#x27;;
7676
import { Routes, RouterModule } from &#x27;@angular/router&#x27;;
77+
import { AboutModule } from &#x27;./about&#x27;;
7778

7879
import { APP_ENUMS } from &#x27;./app-routes.enum&#x27;;
7980

8081
enum APP_ENUM {
81-
home &#x3D; &#x27;home&#x27;
82+
home &#x3D; &#x27;home&#x27;,
8283
}
8384

8485
export const APP_ROUTES: Routes &#x3D; [
8586
{
8687
path: &#x27;about&#x27;,
87-
loadChildren: () &#x3D;&gt;
88-
&quot;import(&#x27;./about/about.module&#x27;).then(m &#x3D;&gt; m.AboutModule)&quot;
88+
loadChildren: (): Promise&lt;AboutModule&gt; &#x3D;&gt;
89+
&quot;import(&#x27;./about/about.module&#x27;).then((m) &#x3D;&gt; m.AboutModule)&quot;,
8990
},
9091
//{ path: &#x27;about&#x27;, loadChildren: &#x27;./about/about.module#AboutModule&#x27; },
9192
{ path: &#x27;&#x27;, redirectTo: &#x27;home&#x27;, pathMatch: &#x27;full&#x27; },
92-
{ path: &#x27;**&#x27;, redirectTo: &#x27;home&#x27;, pathMatch: &#x27;full&#x27; }
93+
{ path: &#x27;**&#x27;, redirectTo: &#x27;home&#x27;, pathMatch: &#x27;full&#x27; },
9394
];
9495

9596
@NgModule({
9697
imports: [RouterModule.forRoot(APP_ROUTES)],
97-
exports: [RouterModule]
98+
exports: [RouterModule],
9899
})
99100
export class AppRoutingModule {}
100101
</code></pre>

overview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ <h4 class="card-title"><span class="icon ion-md-information-circle-outline"></sp
561561
<div class="card-block">
562562
<h4 class="card-title"><span class="icon ion-ios-git-branch"></span></h4>
563563
<p class="card-text">
564-
<a href="./routes.html">12 Routes</a>
564+
<a href="./routes.html">1 Route</a>
565565
</p>
566566
</div>
567567
</div>

0 commit comments

Comments
 (0)