update to angular 2.0.0-alpha.21, update toolbar system

This commit is contained in:
Andrew Joslin
2015-04-30 10:54:46 -06:00
parent 2715e50988
commit 8a42dde132
24 changed files with 651 additions and 344 deletions

View File

@@ -1,4 +1,8 @@
import {NgElement, Component, View as NgView, PropertySetter} from 'angular2/angular2';
import {
NgElement,
Component,
View as NgView,
} from 'angular2/angular2';
@Component({
selector: 'ion-content'
@@ -13,6 +17,7 @@ export class Content {
constructor(
@NgElement() element:NgElement
) {
console.log('constructing content', element.domElement);
this.domElement = element.domElement;
this.domElement.classList.add('content');
}