Merge branch 'bootstrap-refactor' into 2.0

This commit is contained in:
Adam Bradley
2016-05-31 15:50:21 -05:00
198 changed files with 1644 additions and 1637 deletions

View File

@ -1,8 +1,8 @@
import {ViewEncapsulation} from '@angular/core';
import {App, Page, Picker, NavController} from '../../../../../src';
import {Component, ViewEncapsulation} from '@angular/core';
import {ionicBootstrap, Picker, NavController} from '../../../../../src';
@Page({
@Component({
templateUrl: 'main.html',
encapsulation: ViewEncapsulation.None,
})
@ -210,12 +210,11 @@ class E2EPage {
}
@App({
@Component({
template: '<ion-nav [root]="root"></ion-nav>'
})
class E2EApp {
root;
constructor() {
this.root = E2EPage;
}
root = E2EPage;
}
ionicBootstrap(E2EApp);