We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d786aa commit 9a9e5c9Copy full SHA for 9a9e5c9
2 files changed
build/stats/stats_inject.js
@@ -7154,7 +7154,8 @@
7154
$$invalidate(1, show_popup = true);
7155
};
7156
const mouse_out = () => {
7157
- $$invalidate(1, show_popup = false);
+ if (window["chrome"] === void 0)
7158
+ $$invalidate(1, show_popup = false);
7159
7160
$$self.$$set = ($$props2) => {
7161
if ("data" in $$props2)
src/components/charts/popup.svelte
@@ -29,7 +29,7 @@
29
}
30
31
export const mouse_out = () => {
32
- show_popup = false
+ if (window["chrome"] === undefined) show_popup = false
33
34
</script>
35
0 commit comments