Removed deprecated event.

This commit is contained in:
SamTV12345 2023-08-08 18:00:19 +02:00
parent 219bf8295c
commit d1fd315c86
7 changed files with 14 additions and 14 deletions

View file

@ -227,7 +227,7 @@ exports.chat = (() => {
if ((evt.altKey === true && evt.which === 67) || evt.which === 27) {
// If we're in chat already..
$(':focus').trigger('blur'); // required to do not try to remove!
padeditor.ace.focus(); // Sends focus back to pad
padeditor.ace.trigger('focus'); // Sends focus back to pad
evt.preventDefault();
return false;
}