monkey-front-core 0.0.175 → 0.0.176

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.
@@ -1910,11 +1910,17 @@ class MonkeyEcxPopoverDirective {
1910
1910
  this._popover = show;
1911
1911
  console.log('show');
1912
1912
  console.log(show);
1913
- if (show) {
1914
- this.createPopover();
1913
+ try {
1914
+ if (show) {
1915
+ this.createPopover();
1916
+ }
1917
+ else if (this.overlayRef) {
1918
+ this.overlayRef.dispose();
1919
+ }
1915
1920
  }
1916
- else if (this.overlayRef) {
1917
- this.overlayRef.dispose();
1921
+ catch (e) {
1922
+ console.log('e -> popover');
1923
+ console.log(e);
1918
1924
  }
1919
1925
  }
1920
1926
  get target() {
@@ -2061,7 +2067,7 @@ class MonkeyEcxPopoverDirective {
2061
2067
  console.log('error no popover');
2062
2068
  console.log(e);
2063
2069
  }
2064
- console.log('10');
2070
+ console.log('20');
2065
2071
  }
2066
2072
  ngOnDestroy() {
2067
2073
  this.popover = false;