Files
2015-10-08 14:13:06 -05:00

16 lines
271 B
TypeScript

import {IonicPlatform, Page, Popup} from 'ionic/ionic';
@Page({
templateUrl: 'popups/popups.html',
})
export class PopupsPage {
constructor(popup: Popup) {
this.popup = popup;
}
showPopup() {
this.popup.alert("Popup Title").then(() => {
});
}
}