mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(): rename IonicForm to Form
This commit is contained in:
@@ -15,7 +15,7 @@ import {Config} from '../config/config';
|
||||
* ```
|
||||
*/
|
||||
@Injectable()
|
||||
export class IonicForm {
|
||||
export class Form {
|
||||
|
||||
constructor(config: Config, zone: NgZone) {
|
||||
this._config = config;
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user