mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* doing some work for enumerating how the accounts work together * fixing up build scripts and removing extra things * making JavaScript as_tag use the struct field names * making shared.js a module, removing wasmloader.js * don't compress compressed things
6 lines
197 B
JavaScript
6 lines
197 B
JavaScript
// This is easier to have in JS than in WASM
|
|
export function modal_hide_by_id(m) {
|
|
var elem = document.getElementById(m);
|
|
var modal = bootstrap.Modal.getInstance(elem);
|
|
modal.hide();
|
|
}; |