Skip to content

Commit

Permalink
DN-26: Added example config for "modal" property to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Austerschulte committed Apr 19, 2024
1 parent 89c0a18 commit 267cae0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/js/bundles/dn_welcome/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -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
}
}
]
Expand Down

0 comments on commit 267cae0

Please sign in to comment.