Merge remote-tracking branch 'origin/master' into es6-shims

This commit is contained in:
jbavari
2015-10-16 12:18:17 -06:00
2 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
import {App, IonicApp, Platform, ActionSheet} from 'ionic/ionic';
import {App, IonicApp, IonicPlatform, ActionSheet} from 'ionic/ionic';
import {Page, Config, Events} from 'ionic/ionic';
import {ActionSheetPage} from './actionSheet/actionSheet';
import * as helpers from './helpers';
@@ -11,7 +11,7 @@ class DemoApp {
rootPage: any;
constructor(app: IonicApp, platform: Platform) {
constructor(app: IonicApp, platform: IonicPlatform) {
this.app = app;
this.platform = platform;

View File

@@ -4,8 +4,8 @@
</ion-navbar>
<ion-content padding class="has-header">
<button (click)="doAlert()">Alert</button>
<button (click)="doPrompt()">Prompt</button>
<button (click)="doConfirm()">Confirm</button>
<button dark (click)="doAlert()">Alert</button>
<button light (click)="doPrompt()">Prompt</button>
<button primary (click)="doConfirm()">Confirm</button>
</ion-content>