Skip to content

Commit 5c908dc

Browse files
authored
Merge pull request udacity#349 from dshrout/master
Fixes bug in ionic code that displays a blank page
2 parents 253f06d + ef5cd0b commit 5c908dc

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

course-02/exercises/udacity-c2-frontend/src/app/app.component.html

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ion-app>
2-
<ion-split-pane when="false">
3-
<ion-menu>
2+
<ion-split-pane when="false" contentId="main">
3+
<ion-menu contentId="main">
44
<ion-header>
55
<ion-toolbar>
66
<ion-title>Menu</ion-title>
@@ -20,13 +20,9 @@
2020
</ion-content>
2121
</ion-menu>
2222

23-
24-
<ion-content main>
23+
<ion-content id="main">
2524
<app-menubar></app-menubar>
2625
<ion-router-outlet style="margin-top: 56px;"></ion-router-outlet>
2726
</ion-content>
28-
29-
30-
3127
</ion-split-pane>
3228
</ion-app>

0 commit comments

Comments
 (0)