mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
6 lines
138 B
JavaScript
6 lines
138 B
JavaScript
|
$(function () {
|
||
|
"use strict";
|
||
|
|
||
|
// Focus first visible form element.
|
||
|
$("form input:enabled:visible:first").first().select()
|
||
|
});
|