-
diff --git a/ionic/components/select/select.ts b/ionic/components/select/select.ts index c664952d17..b552f72ced 100644 --- a/ionic/components/select/select.ts +++ b/ionic/components/select/select.ts @@ -1,5 +1,5 @@ import {Component, Optional, ElementRef, Renderer, Input, Output, Provider, forwardRef, EventEmitter, HostListener, ContentChildren, QueryList} from 'angular2/core'; -import {NgControl, NG_VALUE_ACCESSOR} from 'angular2/common'; +import {NG_VALUE_ACCESSOR} from 'angular2/common'; import {Alert} from '../alert/alert'; import {Form} from '../../util/form'; diff --git a/ionic/components/toggle/toggle.ts b/ionic/components/toggle/toggle.ts index a50f42ef48..a7902964b1 100644 --- a/ionic/components/toggle/toggle.ts +++ b/ionic/components/toggle/toggle.ts @@ -1,5 +1,5 @@ import {Component, ElementRef, Renderer, Input, Optional, Provider, forwardRef} from 'angular2/core'; -import {NgControl, ControlValueAccessor, NG_VALUE_ACCESSOR} from 'angular2/common'; +import {ControlValueAccessor, NG_VALUE_ACCESSOR} from 'angular2/common'; import {Form} from '../../util/form'; import {isTrueProperty} from '../../util/util';