chore(): rename IonicForm to Form

This commit is contained in:
Adam Bradley
2015-10-16 12:03:11 -05:00
parent bb3b20727c
commit 7a2ab2b6c4
6 changed files with 12 additions and 12 deletions

View File

@ -1,7 +1,7 @@
import {Component, Directive, NgIf, forwardRef, Host, Optional, ElementRef, Renderer, Attribute, Query, QueryList, NgZone} from 'angular2/angular2';
import {Config} from '../../config/config';
import {IonicForm} from '../../util/form';
import {Form} from '../../util/form';
import {Label} from './label';
import {IonicApp} from '../app/app';
import {Content} from '../content/content';
@ -27,7 +27,7 @@ import {Platform} from '../../platform/platform';
export class TextInput {
constructor(
form: IonicForm,
form: Form,
elementRef: ElementRef,
config: Config,
renderer: Renderer,
@ -403,7 +403,7 @@ export class TextInputElement {
})
class InputScrollAssist {
constructor(form: IonicForm, textInput: TextInput) {
constructor(form: Form, textInput: TextInput) {
this.form = form;
this.textInput = textInput;
}