Merge pull request #549 from AndrewBastin/feat/proper-key-def

Show Ctrl instead of Command for shortcuts non-Apple platforms
This commit is contained in:
Andrew Bastin 2020-02-03 18:38:12 -05:00 committed by GitHub
commit 173e3a3fc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -566,19 +566,19 @@
<div slot="body">
<div>
<label>{{ $t("send_request") }}</label>
<kbd> G</kbd>
<kbd>{{ getSpecialKey() }} G</kbd>
</div>
<div>
<label>{{ $t("save_to_collections") }}</label>
<kbd> S</kbd>
<kbd>{{ getSpecialKey() }} S</kbd>
</div>
<div>
<label>{{ $t("copy_request_link") }}</label>
<kbd> K</kbd>
<kbd>{{ getSpecialKey() }} K</kbd>
</div>
<div>
<label>{{ $t("reset_request") }}</label>
<kbd> L</kbd>
<kbd>{{ getSpecialKey() }} L</kbd>
</div>
</div>
<div slot="footer"></div>
@ -677,6 +677,9 @@ export default {
},
methods: {
getSpecialKey() {
return (/(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)) ? "⌘" : "Ctrl";
},
linkActive(path) {
return {
"nuxt-link-exact-active": this.$route.path === path,