summaryrefslogtreecommitdiff
path: root/ext/content.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2016-03-20 18:27:11 -0700
committerAlex Yatskov <alex@foosoft.net>2016-03-20 18:27:11 -0700
commitc242e49c7f10943c2a9515e8b60f0b675a992573 (patch)
treedd7490b2f10bd8251c32678dc93f82c2508e1dfe /ext/content.js
parent2d526b7ecd365d1a3eb93326ceb04c13c78bb2a3 (diff)
Cleanup
Diffstat (limited to 'ext/content.js')
-rw-r--r--ext/content.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/content.js b/ext/content.js
index aa51d758..4938805f 100644
--- a/ext/content.js
+++ b/ext/content.js
@@ -19,7 +19,7 @@
function getRangeAtCursor(e, lookAhead) {
const range = document.caretRangeFromPoint(e.clientX, e.clientY);
if (range === null) {
- return null
+ return null;
}
const node = range.startContainer;