2023-10-31 08:32:40 -04:00
|
|
|
import App from 'resource:///com/github/Aylur/ags/app.js';
|
2023-10-16 17:06:19 -04:00
|
|
|
|
2023-10-24 17:26:38 -04:00
|
|
|
// TODO: find a way to not need this?
|
2023-10-16 17:06:19 -04:00
|
|
|
import Pointers from '../../services/pointers.js';
|
2023-09-12 14:42:53 -04:00
|
|
|
|
2023-09-25 12:43:36 -04:00
|
|
|
|
2023-10-24 17:26:38 -04:00
|
|
|
export default () => {
|
2023-10-28 21:43:40 -04:00
|
|
|
Array.from(App.windows)
|
|
|
|
.filter(w => w[1].closeOnUnfocus)
|
|
|
|
.forEach(w => {
|
|
|
|
App.closeWindow(w[0]);
|
|
|
|
});
|
2023-09-13 19:04:23 -04:00
|
|
|
};
|