diff options
Diffstat (limited to 'src/content/follow.js')
-rw-r--r-- | src/content/follow.js | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/content/follow.js b/src/content/follow.js index 4cb3866..7e1cd01 100644 --- a/src/content/follow.js +++ b/src/content/follow.js @@ -8,6 +8,7 @@ export default class Follow { this.doc = doc; this.hintElements = {}; this.keys = []; + this.onActivatedCallbacks = []; // TODO activate input elements and push button elements let links = Follow.getTargetElements(doc); @@ -36,7 +37,7 @@ export default class Follow { } else if (keyCode === KeyboardEvent.DOM_VK_ENTER || keyCode === KeyboardEvent.DOM_VK_RETURN) { let chars = Follow.codeChars(this.keys); - this.hintElements[chars].activate(); + this.activate(this.hintElements[chars].target); return; } else if (Follow.availableKey(keyCode)) { this.keys.push(keyCode); @@ -64,7 +65,7 @@ export default class Follow { return; } else if (shown.length === 1) { this.remove(); - this.hintElements[chars].activate(); + this.activate(this.hintElements[chars].target); } shown.forEach((key) => { @@ -75,7 +76,6 @@ export default class Follow { }); } - remove() { this.doc.removeEventListener('keydown', this.boundKeydown); Object.keys(this.hintElements).forEach((key) => { @@ -83,6 +83,14 @@ export default class Follow { }); } + activate(element) { + this.onActivatedCallbacks.forEach(f => f(element)); + } + + onActivated(f) { + this.onActivatedCallbacks.push(f); + } + static availableKey(keyCode) { return ( KeyboardEvent.DOM_VK_0 <= keyCode && keyCode <= KeyboardEvent.DOM_VK_9 || |