mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-15 19:48:41 +00:00
14 lines
202 B
JavaScript
14 lines
202 B
JavaScript
export function focusAction (action, callback)
|
|
{
|
|
"use strict";
|
|
|
|
const focus = document.getElementById(action.id);
|
|
|
|
if (!focus) {
|
|
return;
|
|
}
|
|
|
|
focus.focus();
|
|
|
|
callback();
|
|
}; |