@wizishop/angular-components 0.0.68 → 0.0.69
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 +1 -4
- 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/free-popin/free-popin.component.js +2 -5
- package/fesm2015/wizishop-angular-components.js +1 -4
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.69.tgz +0 -0
- package/wizishop-angular-components-0.0.68.tgz +0 -0
|
@@ -3319,16 +3319,13 @@
|
|
|
3319
3319
|
this.closePopin();
|
|
3320
3320
|
};
|
|
3321
3321
|
FreePopinComponent.prototype.closePopin = function () {
|
|
3322
|
-
|
|
3323
|
-
if (!this.firstOpen) {
|
|
3322
|
+
if (!this.firstOpen || this.disableCloseOutside) {
|
|
3324
3323
|
this.visible = false;
|
|
3325
3324
|
this.visibleChange.emit(this.visible);
|
|
3326
3325
|
this.firstOpen = true;
|
|
3327
|
-
console.log('ici2');
|
|
3328
3326
|
}
|
|
3329
3327
|
else {
|
|
3330
3328
|
this.firstOpen = false;
|
|
3331
|
-
console.log('ici3');
|
|
3332
3329
|
}
|
|
3333
3330
|
};
|
|
3334
3331
|
return FreePopinComponent;
|