fallback to use js click (#1274)

This commit is contained in:
LawyZheng
2024-11-27 22:44:05 +08:00
committed by GitHub
parent a2d9b05bda
commit 48e4984deb
4 changed files with 34 additions and 10 deletions

View File

@@ -427,10 +427,10 @@ function getBlockElementUniqueID(element) {
);
if (!hitElement) {
return "";
return ["", false];
}
return hitElement.getAttribute("unique_id") ?? "";
return [hitElement.getAttribute("unique_id") ?? "", true];
}
function isHidden(element) {