27 lines
732 B
JavaScript
27 lines
732 B
JavaScript
|
|
/**
|
||
|
|
* pc-live | Gesetzbuch (external)
|
||
|
|
* Öffnet die öffentliche Gesetze-Übersicht des Aktensystems im eingebetteten Fenster.
|
||
|
|
*/
|
||
|
|
const GesetzbuchApp = (() => {
|
||
|
|
const WIN_ID = 'app-gesetzbuch';
|
||
|
|
const URL = 'https://aktensystem.naturalbornplayers.de/gesetze.html';
|
||
|
|
|
||
|
|
function open() {
|
||
|
|
WindowManager.create({
|
||
|
|
id: WIN_ID,
|
||
|
|
title: 'Gesetzbuch',
|
||
|
|
icon: '📖',
|
||
|
|
width: 1000,
|
||
|
|
height: 680,
|
||
|
|
content: `<iframe
|
||
|
|
src="${URL}"
|
||
|
|
style="flex:1;width:100%;height:100%;border:none;display:block;background:#0f172a"
|
||
|
|
allowfullscreen
|
||
|
|
sandbox="allow-scripts allow-same-origin allow-forms allow-popups"
|
||
|
|
></iframe>`,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
return { open };
|
||
|
|
})();
|