Files
Adam Bradley f409d6add7 wip
2015-12-22 10:43:24 -06:00

30 lines
371 B
TypeScript

import {App, Alert} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class E2EApp {
constructor() {
this.alertOpen = false;
this.confirmOpen = false;
this.confirmResult = '';
this.promptOpen = false;
this.promptResult = '';
}
doAlert() {
debugger;
let alert = Alert.create();
}
doPrompt() {
}
doConfirm() {
}
}