Refactor the window re-rendering into a utility function
This commit is contained in:
parent
9d154cb303
commit
b4657d18f8
2 changed files with 15 additions and 3 deletions
13
module/utils.mjs
Normal file
13
module/utils.mjs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
export function reloadWindows(type = null) {
|
||||
if (!type) {
|
||||
for (const window of ui.windows) {
|
||||
window.render(true);
|
||||
};
|
||||
return;
|
||||
};
|
||||
for (const window of ui.windows) {
|
||||
if (window instanceof type) {
|
||||
window.render(true);
|
||||
};
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue