Skip to content

Commit

Permalink
6.2.1
Browse files Browse the repository at this point in the history
Checkbox click functionality affected by Title and Collapse
  • Loading branch information
valentine195 authored Jul 16, 2021
2 parents f363834 + 3d5b815 commit 33c4ed7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-admonition",
"name": "Admonition",
"version": "6.2.0",
"version": "6.2.1",
"minAppVersion": "0.11.0",
"description": "Admonition block-styled content for Obsidian.md",
"author": "Jeremy Valentine",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-admonition",
"version": "6.2.0",
"version": "6.2.1",
"description": "Admonition block-styled content for Obsidian.md",
"main": "main.js",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -801,6 +801,9 @@ title:
const line = splitContent.find((l) => search.test(l));

input.dataset["line"] = `${splitContent.indexOf(line) + 1}`;
input.onclick = (evt) => {
evt.stopPropagation();
};
}
}

Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"4.3.1": "0.12.0",
"4.4.2": "0.12.2",
"5.0.3": "0.12.2",
"6.2.0": "0.12.4"
"6.2.1": "0.12.4"
}

0 comments on commit 33c4ed7

Please sign in to comment.