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