@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.
@@ -3319,16 +3319,13 @@
3319
3319
  this.closePopin();
3320
3320
  };
3321
3321
  FreePopinComponent.prototype.closePopin = function () {
3322
- console.log('ici');
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;