Skip to content

Commit 9a9e5c9

Browse files
committed
Patched mouse out on Chrome
1 parent 4d786aa commit 9a9e5c9

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

build/stats/stats_inject.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7154,7 +7154,8 @@
71547154
$$invalidate(1, show_popup = true);
71557155
};
71567156
const mouse_out = () => {
7157-
$$invalidate(1, show_popup = false);
7157+
if (window["chrome"] === void 0)
7158+
$$invalidate(1, show_popup = false);
71587159
};
71597160
$$self.$$set = ($$props2) => {
71607161
if ("data" in $$props2)

src/components/charts/popup.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
}
3030
3131
export const mouse_out = () => {
32-
show_popup = false
32+
if (window["chrome"] === undefined) show_popup = false
3333
}
3434
</script>
3535

0 commit comments

Comments
 (0)