Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Språksamlingane
beta.ordbok.uib.no
Commits
840064c1
Commit
840064c1
authored
May 10, 2022
by
Henrik Askjer
Browse files
Merge branch 'hotfix-cmd-key' into 'prod'
fix cmdkey See merge request spraksamlingane/beta.ordbok.uib.no!187
parents
069dc9d2
fdbf09e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/components/DictionaryView.vue
View file @
840064c1
...
...
@@ -753,7 +753,7 @@ export default {
article_link_click
:
function
(
item
)
{
let
event
=
window
.
event
if
(
!
(
event
.
ctrlKey
||
event
.
shiftKey
))
{
if
(
!
(
event
.
ctrlKey
||
event
.
shiftKey
||
event
.
metaKey
))
{
if
(
this
.
article
&&
this
.
article
.
article_id
==
item
.
article_id
){
this
.
article_key
++
this
.
replace_history
()
...
...
@@ -765,7 +765,7 @@ export default {
}
,
details_click
:
function
(
item
)
{
let
event
=
window
.
event
if
(
!
(
event
.
ctrlKey
||
event
.
shiftKey
))
{
if
(
!
(
event
.
ctrlKey
||
event
.
shiftKey
||
event
.
metaKey
))
{
this
.
article
=
item
.
article
this
.
replace_history
()
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment