@wizishop/angular-components 0.0.171 → 0.0.172
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/wizishop-angular-components.umd.js +3 -1
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/block-with-checkbox/block-with-checkbox.component.js +4 -2
- package/fesm2015/wizishop-angular-components.js +3 -1
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.172.tgz +0 -0
- package/wizishop-angular-components-0.0.171.tgz +0 -0
|
@@ -4333,7 +4333,9 @@
|
|
|
4333
4333
|
this.worldAction.emit(true);
|
|
4334
4334
|
};
|
|
4335
4335
|
BlockWithCheckboxComponent.prototype.removeFirstClass = function () {
|
|
4336
|
-
document.querySelectorAll('.firstWacRadioBLock')[0]
|
|
4336
|
+
if (typeof document.querySelectorAll('.firstWacRadioBLock')[0] !== typeof undefined) {
|
|
4337
|
+
document.querySelectorAll('.firstWacRadioBLock')[0].classList.remove('firstWacRadioBLock');
|
|
4338
|
+
}
|
|
4337
4339
|
};
|
|
4338
4340
|
return BlockWithCheckboxComponent;
|
|
4339
4341
|
}());
|