Files
Brandy Carney b6fc63aaba fix(text-input): fix floating labels by getting the value of the ngControl if it exists
Added some test cases for this to the floating labels example. Closes
#710
2015-12-10 15:21:01 -05:00

16 lines
205 B
TypeScript

import {App} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class E2EApp {
constructor() {
this.myValues = {
value1: 'Dynamic Input',
value2: 'Dynamic Textarea'
};
}
}