Files
unknown d8e2849be8 feat(Input): added functionality for clear input option on ion-input
Implemented function to handle when the clearInput button is pressed on an ion-input element
2016-04-14 09:03:00 -05:00

12 lines
151 B
TypeScript

import {App} from 'ionic-angular';
@App({
templateUrl: 'main.html'
})
class E2EApp {
constructor() {
this.myValue = 'value';
}
}