Merge pull request #1855 from nextcloud/focus-onslidetoggle
Add focus to autofocus form element on slide toggle
This commit is contained in:
commit
cdf248f92e
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue