mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
|
|
(function(Modules) {
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
Modules.Autofocus = function() {
|
||
|
|
this.start = function(component) {
|
||
|
|
|
||
|
|
$('input, textarea, select', component).eq(0).trigger('focus');
|
||
|
|
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
})(window.GOVUK.Modules);
|