This commit is contained in:
Supan Adit Pratama 2020-07-02 22:09:40 +07:00
parent abbdd5ce10
commit 9bc30bc722
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 570 B

After

Width:  |  Height:  |  Size: 303 B

View File

@ -611,7 +611,7 @@
// Edit Todo by CTRL + ENTER at Todo Description // Edit Todo by CTRL + ENTER at Todo Description
$("#todo-edit-modal-field-description").keydown(function (e) { $("#todo-edit-modal-field-description").keydown(function (e) {
if (e.ctrlKey && e.keyCode == 13) { if (e.ctrlKey && e.keyCode === 13) {
editTodo(); editTodo();
} }
}); });