13 lines
318 B
JavaScript
13 lines
318 B
JavaScript
import App from 'resource:///com/github/Aylur/ags/app.js';
|
|
|
|
// TODO: find a way to not need this?
|
|
import Pointers from '../../services/pointers.js';
|
|
|
|
|
|
export default () => {
|
|
Array.from(App.windows)
|
|
.filter(w => w[1].closeOnUnfocus)
|
|
.forEach(w => {
|
|
App.closeWindow(w[0]);
|
|
});
|
|
};
|