(path)
| 1 | function navigateToBrowserPage(path) { |
| 2 | const navMessage = { |
| 3 | message: commands.MG_NAVIGATE, |
| 4 | args: { |
| 5 | uri: `browser://${path}` |
| 6 | } |
| 7 | }; |
| 8 | |
| 9 | window.chrome.webview.postMessage(navMessage); |
| 10 | } |
| 11 | |
| 12 | // Add listener for the options menu entries |
| 13 | function addItemsListeners() { |