This commit is contained in:
Adam Bradley
2015-03-23 23:01:01 -05:00
parent 856e2663d1
commit be10eadc2f
2 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ import {Ion} from '../ion'
</div>
</div>`
})
export class ToolBar {
export class Toolbar {
constructor(@NgElement() ngEle:NgElement) {
this.ele = ngEle.domElement

View File

@@ -1,5 +1,5 @@
import {NgElement, Component, Template} from 'angular2/angular2'
import {ToolBar} from '../toolbar/toolbar'
import {Toolbar} from '../toolbar/toolbar'
import {Ion} from '../ion'
@Component({
@@ -18,7 +18,7 @@ import {Ion} from '../ion'
<div class="container">
<content></content>
</div>`,
directives: [ToolBar]
directives: [Toolbar]
})
export class View extends Ion {
constructor(@NgElement() ele:NgElement) {