diff options
author | Maxim Devaev <[email protected]> | 2020-09-04 18:54:52 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-04 18:54:52 +0300 |
commit | fc53759b3e7ddb0b570d35d1afb159080a805586 (patch) | |
tree | be56b898075c2963ca1e986092fae44ef33b96de | |
parent | 6820c31626fbab36347979d7e636e7c9b5513801 (diff) | |
parent | 2e9d1cca9a41efce8f0bf4eb660e1a3117b11e22 (diff) |
Merge pull request #7 from Testato/patch-1
fixed Chrome call
-rw-r--r-- | web/share/js/index/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/index/main.js b/web/share/js/index/main.js index 24a694b8..ac6cf3fc 100644 --- a/web/share/js/index/main.js +++ b/web/share/js/index/main.js @@ -40,7 +40,7 @@ export function main() { function __setAppText() { $("app-text").innerHTML = ` <span class="code-comment"># On Linux using Chromium/Chrome via any terminal:<br> - $</span> \`which chromium 2>/dev/null || which chrome 2>/dev/null\` --app="${window.location.href}"<br> + $</span> \`which chromium 2>/dev/null || which chrome 2>/dev/null || which google-chrome\` --app="${window.location.href}"<br> <br> <span class="code-comment"># On MacOS using Terminal application:<br> $</span> /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --app="${window.location.href}"<br> |