This commit is contained in:
Andrew
2015-04-25 11:48:09 -05:00
parent 7b006db118
commit 14ecc7178b
89 changed files with 3470 additions and 435 deletions

View File

@ -1,11 +1,11 @@
import {NgElement, Component, View, Parent} from 'angular2/angular2'
import {NgElement, Component, View as NgView, Parent} from 'angular2/angular2'
import {IonicComponent} from 'ionic/config/component'
@Component({
selector: 'ion-alert'
})
@View({
@NgView({
template: `
<div class="overlay-backdrop"></div>
<div class="overlay-container">
@ -27,13 +27,8 @@ export class Alert {
@NgElement() ngElement:NgElement
) {
this.domElement = ngElement.domElement
this.domElement.classList.add('pane')
this.domElement.classList.add('pane-overlay')
this.config = Alert.config.invoke(this)
}
}
new IonicComponent(Alert, {
bind: {}
})
new IonicComponent(Alert, {})