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
42
<script>
43
const balloons = document.querySelectorAll(".balloon");
44
-
console.log(balloons);
45
balloons.forEach((el) => {
46
if (!(el instanceof HTMLElement)) return;
47
···
53
const postParent = el.parentElement?.parentElement;
54
if (!cableParent) throw new Error("No parent 1 level up!!!");
55
if (!postParent) throw new Error("No parent 2 levels up!!!");
56
-
console.log("clicked! popping", el, "with post", postParent);
57
58
el.blur();
59
···
41
42
<script>
43
const balloons = document.querySelectorAll(".balloon");
0
44
balloons.forEach((el) => {
45
if (!(el instanceof HTMLElement)) return;
46
···
52
const postParent = el.parentElement?.parentElement;
53
if (!cableParent) throw new Error("No parent 1 level up!!!");
54
if (!postParent) throw new Error("No parent 2 levels up!!!");
0
55
56
el.blur();
57