Files
Max Lynch 72a107cfeb Popup
2015-07-21 10:19:43 -05:00

19 lines
322 B
TypeScript

import {App, IonicView, IonicApp, IonicConfig, Platform} from 'ionic/ionic';
import {Popup} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class MyAppCmp {
constructor(popup: Popup, app: IonicApp, ionicConfig: IonicConfig) {
this.popup = popup;
}
doAlert() {
this.popup.alert('What!?');
}
}