update ags

This commit is contained in:
2023-11-15 16:09:26 +01:00
parent a6292fe031
commit 73e2b949a0
4025 changed files with 3168562 additions and 5715 deletions

View File

@@ -1,12 +1,13 @@
import { Widget } from '../imports.js';
import PopupWindow from './lib/popupwindow.js';
import SidebarRight from "../modules/sideright.js";
import {Widget} from "../imports.js"
import PopupWindow from "./lib/popupwindow.js"
import SidebarRight from "../modules/sideright.js"
export default () => PopupWindow({
export default () =>
PopupWindow({
focusable: true,
anchor: ['right', 'top', 'bottom'],
name: 'sideright',
showClassName: 'sideright-show',
hideClassName: 'sideright-hide',
anchor: ["right", "top", "bottom"],
name: "sideright",
showClassName: "sideright-show",
hideClassName: "sideright-hide",
child: SidebarRight(),
});
})