tangled
alpha
login
or
join now
vielle.dev
/
site-archive
0
fork
atom
[Archived] Archived WIP of vielle.dev
0
fork
atom
overview
issues
pulls
pipelines
Remove unneeded console.log
vielle.dev
9 months ago
2dedbd69
a7ce69d9
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
-2
1 changed file
expand all
collapse all
unified
split
src
components
blog
Balloon.astro
-2
src/components/blog/Balloon.astro
···
41
41
42
42
<script>
43
43
const balloons = document.querySelectorAll(".balloon");
44
44
-
console.log(balloons);
45
44
balloons.forEach((el) => {
46
45
if (!(el instanceof HTMLElement)) return;
47
46
···
53
52
const postParent = el.parentElement?.parentElement;
54
53
if (!cableParent) throw new Error("No parent 1 level up!!!");
55
54
if (!postParent) throw new Error("No parent 2 levels up!!!");
56
56
-
console.log("clicked! popping", el, "with post", postParent);
57
55
58
56
el.blur();
59
57