From 0eed357a5e1ceb3061d88ef99a612bb8c4526fa7 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sat, 9 Sep 2017 20:16:51 +0900 Subject: broadcast an action --- src/content/index.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/content') diff --git a/src/content/index.js b/src/content/index.js index d5cca94..a2a864d 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -11,19 +11,16 @@ let vvConsole = new ConsoleFrame(window); browser.runtime.onMessage.addListener((action) => { switch (action.type) { case actions.CMD_OPEN: - vvConsole.showCommand(''); - break; + return vvConsole.showCommand(''); case actions.CMD_TABS_OPEN: if (action.alter) { // alter url - vvConsole.showCommand('open ' + window.location.href); + return vvConsole.showCommand('open ' + window.location.href); } else { - vvConsole.showCommand('open '); + return vvConsole.showCommand('open '); } - break; case actions.CMD_BUFFER: - vvConsole.showCommand('buffer '); - break; + return vvConsole.showCommand('buffer '); case actions.SCROLL_LINES: scrolls.scrollLines(window, action.count); break; -- cgit v1.2.3