Add focus to autofocus form element on slide toggle

Signed-off-by: Felix A. Epp <work@felixepp.de>
This commit is contained in:
Felix A. Epp 2016-10-22 14:15:58 +02:00
parent e8adf53f77
commit 494c3b1533
1 changed files with 4 additions and 0 deletions

View File

@ -79,6 +79,10 @@
area.slideDown(OC.menuSpeed*4, function() {
area.trigger(new $.Event('show'));
});
var input = $(areaSelector + ' [autofocus]');
if (input.length === 1) {
input.focus();
}
}
// do nothing if the area is animated