18 lines
490 B
JavaScript
18 lines
490 B
JavaScript
|
import Widget from 'resource:///com/github/Aylur/ags/widget.js';
|
||
|
import { SearchAndWindows } from "./windowcontent.js";
|
||
|
import PopupWindow from '../.widgethacks/popupwindow.js';
|
||
|
|
||
|
export default (id = '') => PopupWindow({
|
||
|
name: `overview${id}`,
|
||
|
exclusivity: 'ignore',
|
||
|
keymode: 'exclusive',
|
||
|
visible: false,
|
||
|
// anchor: ['middle'],
|
||
|
layer: 'overlay',
|
||
|
child: Widget.Box({
|
||
|
vertical: true,
|
||
|
children: [
|
||
|
SearchAndWindows(),
|
||
|
]
|
||
|
}),
|
||
|
})
|