mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-16 12:08:41 +00:00
15 lines
240 B
JavaScript
15 lines
240 B
JavaScript
export function showAction (action, callback)
|
|
{
|
|
"use strict";
|
|
|
|
const show = document.getElementById(action.id);
|
|
|
|
if (!show) {
|
|
return;
|
|
}
|
|
|
|
/** global: jsOMS */
|
|
jsOMS.removeClass(show, 'vh');
|
|
|
|
callback();
|
|
}; |