diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-13 21:23:55 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-13 21:23:55 +0900 |
commit | b6e5153c1f67a68434ad3db7d3726f129cc14aa4 (patch) | |
tree | 0e71eac44262414d9760e1a584360536fe19564a /src/operations/index.js | |
parent | 0ae39f1b67e269216ce3d45b870e448f6dbf21d7 (diff) |
move background actions to operations
Diffstat (limited to 'src/operations/index.js')
-rw-r--r-- | src/operations/index.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/operations/index.js b/src/operations/index.js new file mode 100644 index 0000000..16c05f2 --- /dev/null +++ b/src/operations/index.js @@ -0,0 +1,10 @@ +export default { + TABS_CLOSE: 'tabs.close', + TABS_REOPEN: 'tabs.reopen', + TABS_PREV: 'tabs.prev', + TABS_NEXT: 'tabs.next', + TABS_RELOAD: 'tabs.reload', + ZOOM_IN: 'zoom.in', + ZOOM_OUT: 'zoom.out', + ZOOM_NEUTRAL: 'zoom.neutral', +} |