Skip to content

Commit ac53ff0

Browse files
committed
Fix failing tests
1 parent 5166967 commit ac53ff0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/igniteui.angular2.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export class IgControlBase<Model> implements DoCheck {
207207
protected _events: Map<string, string>;
208208
protected _allowChangeDetection = true;
209209

210-
@Input() set options(v: Model) {
210+
set options(v: Model) {
211211
this._config = jQuery.extend(true, v, this._opts);
212212
if (this._opts.dataSource) {
213213
// _config.dataSource should reference the data if the data is set as a top-level opts
@@ -220,8 +220,8 @@ export class IgControlBase<Model> implements DoCheck {
220220
delete this._opts.dataSource;
221221
}
222222
};
223-
@Input() widgetId: string;
224-
@Input() changeDetectionInterval: number;
223+
public widgetId: string;
224+
public changeDetectionInterval: number;
225225

226226
constructor(el: ElementRef, renderer: Renderer, differs: IterableDiffers) {
227227
this._differs = differs;

0 commit comments

Comments
 (0)