mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
Merge branch 'fix-title-editing-shift-key-firefox' of https://github.com/couscous3/wekan into couscous3-fix-title-editing-shift-key-firefox
This commit is contained in:
commit
8a4f5ed6e3
1 changed files with 1 additions and 1 deletions
|
|
@ -200,7 +200,7 @@ Template.editCardTitleForm.events({
|
||||||
'keydown .js-edit-card-title' (evt) {
|
'keydown .js-edit-card-title' (evt) {
|
||||||
// If enter key was pressed, submit the data
|
// If enter key was pressed, submit the data
|
||||||
// Unless the shift key is also being pressed
|
// Unless the shift key is also being pressed
|
||||||
if (evt.keyCode === 13 && !event.shiftKey) {
|
if (evt.keyCode === 13 && !evt.shiftKey) {
|
||||||
$('.js-submit-edit-card-title-form').click();
|
$('.js-submit-edit-card-title-form').click();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue