mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 09:58:39 +00:00
15 lines
237 B
JavaScript
15 lines
237 B
JavaScript
export function hideAction (action, callback)
|
|
{
|
|
"use strict";
|
|
|
|
const hide = document.getElementById(action.id);
|
|
|
|
if (!hide) {
|
|
return;
|
|
}
|
|
|
|
/** global: jsOMS */
|
|
jsOMS.addClass(hide, 'vh');
|
|
|
|
callback();
|
|
}; |