()
| 34 | } |
| 35 | |
| 36 | componentDidMount() { |
| 37 | Mousetrap.bindGlobal('command+shift+]', (e) => { |
| 38 | e.preventDefault(); |
| 39 | this.gotoNextTab(); |
| 40 | return false; |
| 41 | }); |
| 42 | |
| 43 | Mousetrap.bindGlobal('command+shift+[', (e) => { |
| 44 | e.preventDefault(); |
| 45 | this.gotoPreviousTab(); |
| 46 | return false; |
| 47 | }); |
| 48 | } |
| 49 | |
| 50 | handleElectronMenuOption(option) { |
| 51 | switch (option) { |
nothing calls this directly
no outgoing calls
no test coverage detected