Skip to content

Commit

Permalink
fixed unique data checker
Browse files Browse the repository at this point in the history
  • Loading branch information
u-Kuro committed Jul 23, 2023
1 parent 5af6b4d commit 223bc6e
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
Binary file modified Kanshi.apk
Binary file not shown.
Binary file modified android/app/release/Kanshi.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion android/app/src/main/assets/www/build/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion android/app/src/main/assets/www/build/bundle.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@
const isScrollableLeft =
closestScrollableLeftElement.scrollWidth >
closestScrollableLeftElement.clientWidth &&
closestScrollableLeftElement.scrollLeft >= 7.5;
closestScrollableLeftElement.scrollLeft > 0;
if (isScrollableLeft) {
if (closestScrollableLeftElement.id === "popup-container") {
hasScrollableLeftElement = false;
Expand Down
2 changes: 1 addition & 1 deletion docs/build/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/build/bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/src/components/Anime/Fixed/AnimePopup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@
const isScrollableLeft =
closestScrollableLeftElement.scrollWidth >
closestScrollableLeftElement.clientWidth &&
closestScrollableLeftElement.scrollLeft >= 7.5;
closestScrollableLeftElement.scrollLeft > 0;
if (isScrollableLeft) {
if (closestScrollableLeftElement.id === "popup-container") {
hasScrollableLeftElement = false;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Anime/Fixed/AnimePopup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@
const isScrollableLeft =
closestScrollableLeftElement.scrollWidth >
closestScrollableLeftElement.clientWidth &&
closestScrollableLeftElement.scrollLeft >= 7.5;
closestScrollableLeftElement.scrollLeft > 0;
if (isScrollableLeft) {
if (closestScrollableLeftElement.id === "popup-container") {
hasScrollableLeftElement = false;
Expand Down

1 comment on commit 223bc6e

@vercel
Copy link

@vercel vercel bot commented on 223bc6e Jul 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

kanshi – ./

kanshi.vercel.app
kanshi-git-main-u-kuro.vercel.app
kanshi-u-kuro.vercel.app

Please sign in to comment.