-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(scroll): canOverscroll was set to false which prevented PTR from …
…ever working It’s still finishing the PTR before the complete is called though References #5207
- Loading branch information
1 parent
adce1e5
commit e4b2006
Showing
3 changed files
with
29 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,22 @@ | ||
<!-- <ion-view nav-title="Pull to refresh"> --> | ||
<ion-toolbar><ion-title>Pull To Refresh</ion-title></ion-toolbar> | ||
<ion-toolbar><ion-title>Pull To Refresh</ion-title></ion-toolbar> | ||
|
||
<ion-content> | ||
<ion-refresher (starting)="doStarting()" (refresh)="doRefresh($event, refresher)" (pulling)="doPulling($event, amt)"> | ||
</ion-refresher> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
</ion-content> | ||
<ion-content> | ||
<ion-refresher | ||
(starting)="doStarting($event)" | ||
(refresh)="doRefresh($event, refresher)" | ||
(pulling)="doPulling($event, amt)"> | ||
</ion-refresher> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
<f></f> | ||
</ion-content> | ||
|
||
<!-- </ion-view> --> | ||
<style> | ||
f { display: block; height: 400px; width: 100%; background-color: #387ef5; margin-bottom: 15px; } | ||
#counter { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
padding: 20px; | ||
background-color: rgba(0,0,0,0.4); | ||
z-index: 5; | ||
f { | ||
display: block; height: 400px; width: 100%; background-color: #387ef5; margin-bottom: 15px; | ||
} | ||
</style> |