mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
test updates
This commit is contained in:
@ -14,7 +14,7 @@ import {Item} from 'ionic/components/item/item';
|
||||
templateUrl: 'main.html',
|
||||
directives: [Content, Icon, Checkbox, List, Item, NgFor]
|
||||
})
|
||||
export default class IonicApp {
|
||||
class IonicApp {
|
||||
constructor() {
|
||||
console.log('IonicApp Start')
|
||||
|
||||
@ -29,3 +29,7 @@ export default class IonicApp {
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
export function main(ionicBootstrap) {
|
||||
ionicBootstrap(IonicApp);
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {bootstrap, NgFor, ProtoViewRef, ViewContainerRef} from 'angular2/angular2'
|
||||
import {NgFor, ProtoViewRef, ViewContainerRef} from 'angular2/angular2'
|
||||
import {Component, Directive} from 'angular2/src/core/annotations_impl/annotations';
|
||||
import {View} from 'angular2/src/core/annotations_impl/view';
|
||||
import {Parent} from 'angular2/src/core/annotations_impl/visibility';
|
||||
@ -20,7 +20,6 @@ class IonicApp {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
export function main() {
|
||||
bootstrap(IonicApp);
|
||||
export function main(ionicBootstrap) {
|
||||
ionicBootstrap(IonicApp);
|
||||
}
|
||||
|
Reference in New Issue
Block a user