From 3281d84718378cd5d004c1a6115dd48f896f704e Mon Sep 17 00:00:00 2001 From: Drew Rygh Date: Sun, 18 Oct 2015 10:56:28 -0500 Subject: [PATCH] chore(demos): IonicPlatform to Platform --- demos/component-docs/actionSheet/actionSheet.ts | 4 ++-- demos/component-docs/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/demos/component-docs/actionSheet/actionSheet.ts b/demos/component-docs/actionSheet/actionSheet.ts index 1bc6e30585..4773e34ced 100644 --- a/demos/component-docs/actionSheet/actionSheet.ts +++ b/demos/component-docs/actionSheet/actionSheet.ts @@ -1,11 +1,11 @@ -import {IonicPlatform, Page, ActionSheet} from 'ionic/ionic'; +import {Platform, Page, ActionSheet} from 'ionic/ionic'; @Page({ templateUrl: 'actionSheet/actionSheet.html', }) export class ActionSheetPage { - constructor(actionSheet: ActionSheet, platform: IonicPlatform) { + constructor(actionSheet: ActionSheet, platform: Platform) { this.actionSheet = actionSheet; this.platform = platform; } diff --git a/demos/component-docs/index.ts b/demos/component-docs/index.ts index 2b0ef09285..c0184a6e08 100644 --- a/demos/component-docs/index.ts +++ b/demos/component-docs/index.ts @@ -1,4 +1,4 @@ -import {App, IonicApp, IonicPlatform, ActionSheet} from 'ionic/ionic'; +import {App, IonicApp, Platform, 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: IonicPlatform) { + constructor(app: IonicApp, platform: Platform) { this.app = app; this.platform = platform;