We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 992c340 commit dfef441Copy full SHA for dfef441
src/igniteui.angular2.ts
@@ -194,7 +194,7 @@ export class IgControlBase<Model> implements DoCheck {
194
}
195
196
if (!this.equalsDiff(opts, this._opts, diff)) {
197
- this._opts = JSON.parse(JSON.stringify(opts));
+ this._opts = jQuery.extend(true, {}, opts);
198
for (i = 0; i < diff.length; i++) {
199
option = diff[i].key;
200
if (jQuery.ui[this._widgetName] &&
0 commit comments