aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Gläßer2016-09-23 19:09:44 +0200
committerTobias Gläßer2016-09-23 19:11:29 +0200
commitd6db15d6d558b3def86c1b0ac25904abf89adef9 (patch)
tree36a6e0c7e1e0f20881e52d47e685977b05e4594f
parentd6b5a7c26028951f8bb7feeff8801779f9a8506f (diff)
parent641378f58002a4c2314a53eae401e26acc46907c (diff)
downloadvimium-d6db15d6d558b3def86c1b0ac25904abf89adef9.tar.bz2
fixup! New feature/command: Mute/unmute tab.
-rw-r--r--background_scripts/main.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index 6a994707..d9b527ef 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -210,7 +210,7 @@ BackgroundCommands =
openCopiedUrlInCurrentTab: (request) -> TabOperations.openUrlInCurrentTab extend request, url: Clipboard.paste()
openCopiedUrlInNewTab: (request) -> @createTab extend request, url: Clipboard.paste()
togglePinTab: ({tab}) -> chrome.tabs.update tab.id, {pinned: !tab.pinned}
- toggleMuteTab: ({tab}) -> chrome.tabs.update tab.id, {muted: !tab.muted}
+ toggleMuteTab: ({tab}) -> chrome.tabs.update tab.id, {muted: !tab.mutedInfo.muted}
moveTabLeft: moveTab
moveTabRight: moveTab
nextFrame: ({count, frameId, tabId}) ->