Skip to content

Commit

Permalink
chore(player): update expand swipe's limit
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaraa committed Jun 6, 2024
1 parent 3ecc54c commit 922bbb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/static/js/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ playerEl?.addEventListener(
if (y > playerStartY + 75) {
collapse();
}
if (y < playerStartY + 25) {
if (y < playerStartY - 25) {
expand();
}
},
Expand Down

0 comments on commit 922bbb6

Please sign in to comment.