mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 09:27:31 -07:00
Play sound on like
This commit is contained in:
parent
b8dcad8f8e
commit
7a4ac752d1
2 changed files with 4 additions and 0 deletions
|
@ -52,6 +52,8 @@ const props = defineProps<{
|
|||
|
||||
function star(ev?: MouseEvent): void {
|
||||
pleaseLogin();
|
||||
sound.play("reaction");
|
||||
|
||||
os.api("notes/reactions/create", {
|
||||
noteId: props.note.id,
|
||||
reaction:
|
||||
|
|
|
@ -64,6 +64,8 @@ function toggleStar(ev?: MouseEvent): void {
|
|||
pleaseLogin();
|
||||
|
||||
if (!props.reacted) {
|
||||
sound.play("reaction");
|
||||
|
||||
os.api("notes/reactions/create", {
|
||||
noteId: props.note.id,
|
||||
reaction: instance.defaultReaction,
|
||||
|
|
Loading…
Reference in a new issue