remove spaces

This commit is contained in:
daria 2025-02-05 17:08:27 +02:00
parent 7031ba8dc7
commit 838d40d14c

View File

@ -885,10 +885,7 @@ MessengerUI, Messages, Pages, PadTypes) {
$skipLink.on('click', function (event) {
event.preventDefault();
var $firstFocusable = $targetElement.find(
'a, button, input, select, textarea, [tabindex]:not([tabindex="-1"]) '
).first();
var $firstFocusable = $targetElement.find('a, button, input, select, textarea, [tabindex]:not([tabindex="-1"])').first();
if ($firstFocusable.length) {
$firstFocusable.trigger('focus');
}