poll_widget: Use e.key instead of deprecated e.keyCode.

Tested by making sure Enter and Escape work for editing poll title
and adding new poll options.
This commit is contained in:
Priyank Patel 2021-05-29 20:13:54 +00:00 committed by Tim Abbott
parent c292ade96a
commit 121e21d3b9
1 changed files with 4 additions and 4 deletions

View File

@ -125,12 +125,12 @@ export function activate({
elem.find("input.poll-question").on("keydown", (e) => { elem.find("input.poll-question").on("keydown", (e) => {
e.stopPropagation(); e.stopPropagation();
if (e.keyCode === 13) { if (e.key === "Enter") {
submit_question(); submit_question();
return; return;
} }
if (e.keyCode === 27) { if (e.key === "Escape") {
abort_edit(); abort_edit();
return; return;
} }
@ -159,12 +159,12 @@ export function activate({
elem.find("input.poll-option").on("keydown", (e) => { elem.find("input.poll-option").on("keydown", (e) => {
e.stopPropagation(); e.stopPropagation();
if (e.keyCode === 13) { if (e.key === "Enter") {
submit_option(); submit_option();
return; return;
} }
if (e.keyCode === 27) { if (e.key === "Escape") {
$("input.poll-option").val(""); $("input.poll-option").val("");
return; return;
} }