diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-11-18 18:47:35 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-11-18 18:47:35 +0900 |
commit | 63b93ce1ca16e93563453e5caba451886fa3c01d (patch) | |
tree | bf31b6519fe10f0150ecc8c6da55c7576e9677c0 /src/content/components/common | |
parent | 822033613061696e89725beb97265aad2bdffaa7 (diff) |
Use webextension message to console
Diffstat (limited to 'src/content/components/common')
-rw-r--r-- | src/content/components/common/mark.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/components/common/mark.js b/src/content/components/common/mark.js index 1ed636b..0f838a9 100644 --- a/src/content/components/common/mark.js +++ b/src/content/components/common/mark.js @@ -33,7 +33,7 @@ export default class MarkComponent { } if (key.ctrlKey || key.metaKey || key.altKey) { - consoleFrames.postError(window.document, 'Unknown mark'); + consoleFrames.postError('Unknown mark'); } else if (globalKey(key.key) && markStage.setMode) { this.doSetGlobal(key); } else if (globalKey(key.key) && markStage.jumpMode) { @@ -55,7 +55,7 @@ export default class MarkComponent { doJump(marks, key, smoothscroll) { if (!marks[key.key]) { - consoleFrames.postError(window.document, 'Mark is not set'); + consoleFrames.postError('Mark is not set'); return; } |