aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/main.coffee
diff options
context:
space:
mode:
authorStephen Blott2016-09-24 08:54:08 +0100
committerStephen Blott2016-09-24 08:54:08 +0100
commitcfca5794e4073baacb9b3d4a6b0ce21d6587fd34 (patch)
treeb9658279b0eeb91567b6af617ee4d03b97d7d7fb /background_scripts/main.coffee
parent89c93f61aace514487c918ae2c55674136953058 (diff)
parentd6db15d6d558b3def86c1b0ac25904abf89adef9 (diff)
downloadvimium-cfca5794e4073baacb9b3d4a6b0ce21d6587fd34.tar.bz2
Merge remote-tracking branch 'tobimensch/master'
Diffstat (limited to 'background_scripts/main.coffee')
-rw-r--r--background_scripts/main.coffee1
1 files changed, 1 insertions, 0 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index 929d5537..d9b527ef 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -210,6 +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.mutedInfo.muted}
moveTabLeft: moveTab
moveTabRight: moveTab
nextFrame: ({count, frameId, tabId}) ->