Compare commits

..

No commits in common. "dc9b456409e6b9b444285d03db351e7516c3714d" and "6dda77ec31491a234b1275c7d2b092da78c72a32" have entirely different histories.

2 changed files with 4 additions and 3 deletions

View file

@ -12,14 +12,14 @@
<meta property="og:type" content="website">
<meta property="og:title" content="Campfire">
<meta property="og:description" content="Social media for the galaxy-wide-web!">
<meta property="og:image" content="https://campfire.bliss.town/icon/campfire-icon.png">
<meta property="og:image" content="https://campfire.bliss.town/favicon.png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="campfire.bliss.town">
<meta property="twitter:url" content="https://campfire.bliss.town">
<meta name="twitter:title" content="Campfire">
<meta name="twitter:description" content="Social media for the galaxy-wide-web!">
<meta name="twitter:image" content="https://campfire.bliss.town/icon/campfire-icon.png">
<meta name="twitter:image" content="https://campfire.bliss.town/favicon.png">
%sveltekit.head%
</head>

View file

@ -35,6 +35,7 @@
function gotoPost() {
if (focused) return;
if (event && event.key && event.key !== "Enter") return;
console.log(`/post/${post.id}`);
goto(`/post/${post.id}`);
}
@ -59,7 +60,7 @@
class={"post" + (focused ? " focused" : "")}
aria-label={aria_label}
bind:this={el}
on:mousedown={e => {mouse_pos.left = e.pageX; mouse_pos.top = e.pageY}}
on:mousedown={e => {mouse_pos.left = e.pageX; mouse_pos.top = e.pageY; console.log(mouse_pos)}}
on:mouseup={e => {if (e.pageX == mouse_pos.left && e.pageY == mouse_pos.top) gotoPost()}}
on:keydown={gotoPost}>
<PostHeader post={post} />