mirror of https://github.com/zulip/zulip.git
6 lines
93 B
JavaScript
6 lines
93 B
JavaScript
|
function autofocus(selector) {
|
||
|
$(function () {
|
||
|
$(selector)[0].focus();
|
||
|
});
|
||
|
}
|