mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00

Added some tests for modals with a toolbar, only target the first toolbar in a menu or modal so the user can have multiple toolbars without skewing them. References #469
18 lines
461 B
HTML
18 lines
461 B
HTML
|
|
<ion-content padding>
|
|
<p>
|
|
<button class="e2eOpenModal" (click)="openModalChildNav()">Open modal w/ child ion-nav</button>
|
|
</p>
|
|
<p>
|
|
<button (click)="openModal()">Open plain modal</button>
|
|
</p>
|
|
<p>
|
|
<button class="e2eOpenToolbarModal" (click)="openToolbarModal()">Open modal w/ toolbar</button>
|
|
</p>
|
|
<p>
|
|
<button (click)="openModalCustomAnimation()">Modal: Custom Animation</button>
|
|
</p>
|
|
</ion-content>
|
|
|
|
<ion-overlay></ion-overlay>
|