fix(content): tap-click deadlock (#17170)

fixes #17138
fixes #16863
fixes #16191
fixes #16911
This commit is contained in:
Manu MA
2019-01-18 18:53:35 +01:00
committed by GitHub
parent d513e8a952
commit 5cb7f68ee2
3 changed files with 40 additions and 22 deletions

View File

@ -37,6 +37,12 @@
--ion-background-color-rgb: 0,0,0;
--ion-text-color-rgb: 255,255,255;
}
[f] {
background: green;
width: 100px;
height: 100px;
}
</style>
<script>
class PageOne extends HTMLElement {
@ -74,6 +80,15 @@
<ion-button class="next">Go to Page Three</ion-button>
</ion-nav-push>
</div>
<div f></div>
<div f></div>
<div f></div>
<div f></div>
<div f></div>
<div f></div>
<div f></div>
<div f></div>
</ion-content>
`;
}