Merge pull request #1855 from nextcloud/focus-onslidetoggle

Add focus to autofocus form element on slide toggle
This commit is contained in:
Morris Jobke 2016-11-18 21:11:46 +01:00 committed by GitHub
commit cdf248f92e

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