diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-15 12:34:26 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-15 17:42:17 +0900 |
commit | ac5354020e5efdf6e284d4b36696b9f94d46bef9 (patch) | |
tree | b515691907c341a053998bec269e54db1a3a8808 /src/content/actions | |
parent | 4c9d0433a6ac851e72d50d6fb0451baa9d35fd35 (diff) |
support multi-frame following
Diffstat (limited to 'src/content/actions')
-rw-r--r-- | src/content/actions/operation.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/content/actions/operation.js b/src/content/actions/operation.js index 3aa9c1f..81bcc2f 100644 --- a/src/content/actions/operation.js +++ b/src/content/actions/operation.js @@ -3,7 +3,6 @@ import messages from 'shared/messages'; import * as scrolls from 'content/scrolls'; import * as navigates from 'content/navigates'; import * as urls from 'content/urls'; -import * as followActions from 'content/actions/follow'; import * as consoleFrames from 'content/console-frames'; const exec = (operation) => { @@ -23,7 +22,10 @@ const exec = (operation) => { case operations.SCROLL_END: return scrolls.scrollEnd(window); case operations.FOLLOW_START: - return followActions.enable(operation.newTab); + return window.top.postMessage(JSON.stringify({ + type: messages.FOLLOW_START, + newTab: operation.newTab + }), '*'); case operations.NAVIGATE_HISTORY_PREV: return navigates.historyPrev(window); case operations.NAVIGATE_HISTORY_NEXT: |