We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73fea5b + aea6dbf commit 1f35ed3Copy full SHA for 1f35ed3
CHANGELOG.md
@@ -9,6 +9,7 @@ This file is structured according to the [Keep a Changelog](http://keepachangelo
9
### Fixed
10
11
- Reveal active column on reload preview
12
+- Proper propagation of the click event in the preview window
13
14
## [v0.8.0] - 2023-03-17
15
media/main.js
@@ -35,7 +35,7 @@
35
};
36
37
document.body.addEventListener('click', event => {
38
- const node = event && event.target;
+ let node = event && event.target;
39
while (node) {
40
if (node.href) {
41
let href = node.getAttribute('href');
0 commit comments