aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-08-19 21:08:06 -0700
committerAlex Yatskov <alex@foosoft.net>2017-08-19 21:08:06 -0700
commite22699cfccf76edd1fcad1e75d847476c7ca6a55 (patch)
tree2155f86c7d14932594b24d486b48e7652be43c13
parentd5b4b0499842023fab57a8231d7e0eb80737deab (diff)
bugfix and version1.3.3
-rw-r--r--ext/fg/js/document.js2
-rw-r--r--ext/manifest.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/document.js b/ext/fg/js/document.js
index 26c85b40..b1e71777 100644
--- a/ext/fg/js/document.js
+++ b/ext/fg/js/document.js
@@ -76,7 +76,7 @@ function docRangeFromPoint(point) {
if (!document.caretRangeFromPoint) {
document.caretRangeFromPoint = (x, y) => {
const position = document.caretPositionFromPoint(x,y);
- if (position) {
+ if (position && position.offsetNode) {
const range = document.createRange();
range.setStart(position.offsetNode, position.offset);
range.setEnd(position.offsetNode, position.offset);
diff --git a/ext/manifest.json b/ext/manifest.json
index 744ece39..414f730e 100644
--- a/ext/manifest.json
+++ b/ext/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Yomichan",
- "version": "1.3.2",
+ "version": "1.3.3",
"description": "Japanese dictionary with Anki integration",
"icons": {"16": "mixed/img/icon16.png", "48": "mixed/img/icon48.png", "128": "mixed/img/icon128.png"},