Skip to content

Commit

Permalink
Auto Complete 1.0.20 - Fix offset issue caused by previous update whi…
Browse files Browse the repository at this point in the history
…ch doubled scrolling offsets
  • Loading branch information
EvidentlyCube committed Sep 24, 2024
1 parent 92ffc7c commit e76b986
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docs/index-530-cm.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index-530.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index-531-cm.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index-531.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index-cm.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/library.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
{
"title": "$:/plugins/EvidentlyCube/AutoComplete",
"name": "Auto Complete",
"version": "1.0.19",
"core-version": ">=5.2.3",
"version": "1.0.20",
"core-version": ">=5.2.2",
"description": "Enable easy tiddler name completion in various contexts",
"author": "Maurycy Zarzycki",
"source": "https://github.com/EvidentlyCube/TW5-AutoComplete",
Expand Down
4 changes: 2 additions & 2 deletions docs/recipes/library/tiddlers.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
{
"title": "$:/plugins/EvidentlyCube/AutoComplete",
"name": "Auto Complete",
"version": "1.0.19",
"core-version": ">=5.2.3",
"version": "1.0.20",
"core-version": ">=5.2.2",
"description": "Enable easy tiddler name completion in various contexts",
"author": "Maurycy Zarzycki",
"source": "https://github.com/EvidentlyCube/TW5-AutoComplete",
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
title: $:/plugins/EvidentlyCube/AutoComplete/history
type: text/vnd.tiddlywiki

* ''1.0.20'': Fix offset issue caused by previous update which doubled scrolling offsets
* ''1.0.19'':
** Registered triggers in the settings now display without any accidental parsing
** Fix extraneous offset when using a theme that has left-top offsets/margins
Expand Down
4 changes: 2 additions & 2 deletions plugins/EvidentlyCube/TW5-AutoComplete/plugin/plugin.info
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"title": "$:/plugins/EvidentlyCube/AutoComplete",
"name": "Auto Complete",
"version": "1.0.19",
"core-version": ">=5.2.3",
"version": "1.0.20",
"core-version": ">=5.2.2",
"description": "Enable easy tiddler name completion in various contexts",
"author": "Maurycy Zarzycki",
"source": "https://github.com/EvidentlyCube/TW5-AutoComplete",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ API for the modal

const position = acContainer.getBoundingClientRect();

caretPosition.left -= position.left;
caretPosition.top -= position.top;
caretPosition.left -= position.left + window.scrollX;
caretPosition.top -= position.top + window.scrollY;

acContainer.style.display = oldDisplay;
}
Expand Down

Large diffs are not rendered by default.

0 comments on commit e76b986

Please sign in to comment.