Skip to content

Commit

Permalink
test(many): update buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Apr 30, 2024
1 parent 394bd0b commit 92792d5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions core/src/components/alert/test/standalone/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@
<script src="../../../../../scripts/testing/scripts.js"></script>
<script nomodule src="../../../../../dist/ionic/ionic.js"></script>
<script type="module" src="../../../../../dist/ionic/ionic.esm.js"></script>

<style>
.f {
width: 200px;
height: 200px;
background: blue;
margin: 20px auto;
}
</style>
</head>
<script type="module">
import { alertController } from '../../../../dist/ionic/index.esm.js';
Expand Down Expand Up @@ -60,15 +69,6 @@
</form>
</dialog>

<style>
.f {
width: 200px;
height: 200px;
background: blue;
margin: 20px auto;
}
</style>

<script>
async function openAlert(opts) {
const alert = await alertController.create(opts);
Expand Down
6 changes: 3 additions & 3 deletions core/src/components/back-button/test/host-element/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<ion-content class="ion-padding">
<h1>Page One</h1>
<ion-nav-link router-direction="forward" component="page-two">
<ion-button class="next">Go to Page Two</ion-button>
<button>Go to Page Two</button>
</ion-nav-link>
</ion-content>
`;
Expand All @@ -51,7 +51,7 @@ <h1>Page One</h1>
<h1>Page Two</h1>
<div>
<ion-nav-link router-direction="forward" component="page-three">
<ion-button class="next">Go to Page Three</ion-button>
<button>Go to Page Three</button>
</ion-nav-link>
</div>
</ion-content>
Expand All @@ -75,7 +75,7 @@ <h1>Page Two</h1>
<h1>Page Three</h1>
<div>
<ion-nav-link router-direction="forward" component="page-four">
<ion-button class="next">Go to Page Four</ion-button>
<button>Go to Page Four</button>
</ion-nav-link>
</div>
</ion-content>
Expand Down

0 comments on commit 92792d5

Please sign in to comment.