mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
6 lines
93 B
JavaScript
6 lines
93 B
JavaScript
function autofocus(selector) {
|
|
$(function () {
|
|
$(selector)[0].focus();
|
|
});
|
|
}
|