mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
14 lines
387 B
JavaScript
14 lines
387 B
JavaScript
import {Descendent, Parent, NgElement, Component, View as NgView, bootstrap} from 'angular2/angular2';
|
|
import {View, Content, Nav, NavPane} from 'ionic/ionic';
|
|
|
|
@Component({ selector: 'splash-page' })
|
|
@NgView({
|
|
templateUrl: 'pages/splash.html',
|
|
directives: [View, Content]
|
|
})
|
|
export class HNSplashPage {
|
|
constructor(@Parent() viewport: Nav) {
|
|
//window.navPane = navPane;
|
|
}
|
|
}
|