Revert "IonInput extends Ion"

This reverts commit d9f46820f6563cf380b0a4cccf060dce6ba10ebb.
This commit is contained in:
Adam Bradley
2015-07-16 17:32:58 -05:00
parent d9f46820f6
commit f62feb3f5a
2 changed files with 2 additions and 6 deletions

View File

@ -1,4 +1,3 @@
import {Ion} from '../ion';
import {IonicConfig} from '../../config/config';
import * as dom from '../../util/dom';
@ -7,15 +6,12 @@ let activeInput = null;
let lastInput = null;
export class IonInput extends Ion {
export class IonInput {
constructor(
elementRef: ElementRef,
ionicConfig: IonicConfig,
app: IonicApp,
scrollView: Content
) {
super(elementRef, ionicConfig);
this.elementRef = elementRef;
this.app = app;
this.scrollView = scrollView;

View File

@ -71,7 +71,7 @@ export class TextInput extends IonInput {
app: IonicApp,
config: IonicConfig
) {
super(elementRef, config, app, scrollView);
super(elementRef, app, scrollView);
if (container) {
container.registerInput(this);