Fix naming.
This commit is contained in:
@ -163,15 +163,15 @@ class TpPopup extends EventHelpers(Position(DomQuery(LitElement))) {
|
||||
}
|
||||
|
||||
_docClick(e) {
|
||||
const isThisPopover = e.composedPath().indexOf(this) > -1;
|
||||
if (!isThisPopover && this.isOpen) {
|
||||
const isThisPopup = e.composedPath().indexOf(this) > -1;
|
||||
if (!isThisPopup && this.isOpen) {
|
||||
this.close();
|
||||
}
|
||||
}
|
||||
|
||||
_onClick(e) {
|
||||
const toggle = closest(e.composedPath()[0], '[slot="toggle"]', true) === this.toggleEl;
|
||||
const closePopover = closest(e.composedPath()[0], '[close-popover]', true);
|
||||
const closePopup = closest(e.composedPath()[0], '[close-popup]', true);
|
||||
|
||||
if (toggle && this.toggleEl.hasAttribute('disabled')) return;
|
||||
|
||||
@ -179,7 +179,7 @@ class TpPopup extends EventHelpers(Position(DomQuery(LitElement))) {
|
||||
this.toggle();
|
||||
}
|
||||
|
||||
if (closePopover) {
|
||||
if (closePopup) {
|
||||
this.close();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user