From 267cae0f48f67ea90882209ffed45faffe718c3e Mon Sep 17 00:00:00 2001 From: Marius Austerschulte Date: Fri, 19 Apr 2024 14:17:21 +0200 Subject: [PATCH] DN-26: Added example config for "modal" property to docs --- src/main/js/bundles/dn_welcome/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/js/bundles/dn_welcome/README.md b/src/main/js/bundles/dn_welcome/README.md index 76812eb..ab281a4 100644 --- a/src/main/js/bundles/dn_welcome/README.md +++ b/src/main/js/bundles/dn_welcome/README.md @@ -57,6 +57,7 @@ Here is an example configuration from the `app.json` file to customize the conta - The `w` and `h` properties of the `marginBox` property are used to define the window's size in pixels. - The window gets appended a CSS class `myCustomStyleClass` that you can define in a separate CSS file. - The `maximizable` property is `true`, which displays a maximize button in the window's title bar. +- When `modal` is `false`, user interactions outside the area of the window will not be blocked. ```json { @@ -79,7 +80,8 @@ Here is an example configuration from the `app.json` file to customize the conta "h": "600" }, "windowClass": "myCustomStyleClass", - "maximizable": true + "maximizable": true, + "modal": false } } ]