Skip to content

Commit

Permalink
Patched mouse out on Chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
KamWithK committed Aug 21, 2022
1 parent 4d786aa commit 9a9e5c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build/stats/stats_inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -7154,7 +7154,8 @@
$$invalidate(1, show_popup = true);
};
const mouse_out = () => {
$$invalidate(1, show_popup = false);
if (window["chrome"] === void 0)
$$invalidate(1, show_popup = false);
};
$$self.$$set = ($$props2) => {
if ("data" in $$props2)
Expand Down
2 changes: 1 addition & 1 deletion src/components/charts/popup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
}
export const mouse_out = () => {
show_popup = false
if (window["chrome"] === undefined) show_popup = false
}
</script>

Expand Down

0 comments on commit 9a9e5c9

Please sign in to comment.