Focus text area automatically when showing the open url dialog.

This commit is contained in:
Viktor Kovacs 2021-04-30 08:35:25 +02:00
parent 72e45a8030
commit bea9152103

View File

@ -74,6 +74,7 @@ OV.ShowOpenUrlDialog = function (onOk)
$('<div>').html (text).addClass ('ov_dialog_section').appendTo (contentDiv);
urlsTextArea.appendTo (contentDiv);
dialog.Show ();
urlsTextArea.focus ();
return dialog;
};