13 lines
342 B
TypeScript
13 lines
342 B
TypeScript
// Types
|
|
import { PopupWindow } from 'global-types';
|
|
|
|
|
|
export default () => {
|
|
(Array.from(App.windows) as Array<[string, PopupWindow]>)
|
|
.filter((w) =>
|
|
w[1].attribute.close_on_unfocus &&
|
|
w[1].attribute.close_on_unfocus !== 'stay')
|
|
.forEach((w) => {
|
|
App.closeWindow(w[0]);
|
|
});
|
|
};
|