new bootstrap

This commit is contained in:
Adam Bradley
2015-06-18 11:59:52 -05:00
parent df63eb9fe8
commit 9b80cffedb
66 changed files with 793 additions and 1289 deletions

View File

@ -1,4 +1,3 @@
import {bootstrap} from 'angular2/angular2'
import {Component, Directive} from 'angular2/src/core/annotations_impl/annotations';
import {View} from 'angular2/src/core/annotations_impl/view';
@ -9,11 +8,11 @@ let rotateZ = '180deg';
let translateX = '100px';
let scale = 0.6;
@Component({ selector: 'ion-app' })
@Component({ selector: 'ion-view' })
@View({
templateUrl: 'main.html'
})
class IonicApp {
export default class IonicApp {
constructor() {
this.animation = new Animation();
@ -76,8 +75,3 @@ class IonicApp {
}
}
export function main() {
bootstrap(IonicApp);
}