Browse Source

Merge pull request #1855 from nextcloud/focus-onslidetoggle

Add focus to autofocus form element on slide toggle
pull/2152/head
Morris Jobke 10 years ago
committed by GitHub
parent
commit
cdf248f92e
  1. 4
      core/js/apps.js

4
core/js/apps.js

@ -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…
Cancel
Save