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,14 +1,14 @@
import {Injectable, NgZone} from 'angular2/angular2';
import {Config} from '../config/config';
import {IonicForm} from './form';
import {Form} from './form';
import * as dom from './dom';
@Injectable()
export class Keyboard {
constructor(config: Config, form: IonicForm, zone: NgZone) {
constructor(config: Config, form: Form, zone: NgZone) {
this.form = form;
this.zone = zone;