Fix naming.

This commit is contained in:
Peter Kaske 2022-03-23 23:46:26 +01:00
parent 6442c38926
commit 721f2a4f4a
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@tp/tp-popup",
"version": "1.0.3",
"version": "1.0.4",
"description": "",
"main": "tp-popup.js",
"scripts": {

View File

@ -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();
}
}