Files
Max Lynch 6b11bfb801 wip
2015-07-05 17:57:10 -05:00

28 lines
464 B
TypeScript

import {Component} from 'angular2/angular2';
import {IonicView} from 'ionic/ionic';
@Component({ selector: 'ion-app' })
@IonicView({
templateUrl: 'main.html'
})
class MyApp {
constructor() {
console.log('IonicApp Start')
}
doRefresh() {
console.log('DOREFRESH')
}
doStarting() {
console.log('DOSTARTING');
}
doPulling(amt) {
console.log('DOPULLING', amt);
}
}
export function main(ionicBootstrap) {
ionicBootstrap(MyApp);
}