Files
Brandy Carney e4b200639e 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
2016-01-26 18:55:27 -05:00

26 lines
368 B
TypeScript

import {App} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class E2EApp {
doRefresh(refresher) {
console.log('DOREFRESH', refresher)
setTimeout(() => {
refresher.complete();
console.log("Complete");
}, 5000);
}
doStarting() {
console.log('DOSTARTING');
}
doPulling(amt) {
console.log('DOPULLING', amt);
}
}