Tons of form shit

This commit is contained in:
Max Lynch
2015-05-05 16:49:23 -05:00
parent 13a1c897bf
commit 7ff86db352
15 changed files with 112 additions and 31 deletions

View File

@ -0,0 +1,17 @@
import {NgElement, Decorator} from 'angular2/angular2'
import {IonicComponent} from 'ionic/config/component'
@Decorator({
selector: 'ion-input'
})
export class Input {
constructor(
@NgElement() ngElement:NgElement
) {
this.domElement = ngElement.domElement
//this.config = Button.config.invoke(this)
console.log('INPUT');
}
}
new IonicComponent(Input, {
})