Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions web/client/components/contextcreator/ContextCreator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ export default class ContextCreator extends React.Component {
"Annotations",
"MapImport",
"MapExport",
"Settings",
"Undo",
"Redo",
"Expander",
Expand Down
11 changes: 10 additions & 1 deletion web/client/plugins/Settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,19 @@ const SettingsPlugin = connect((state) => ({
/**
* Settings window to configure some details of the current map.
* Is also a container for settings coming from the other plugins.
* Renders in {@link #plugins.BurgerMenu|BurgerMenu} an entry to open this window.
*
* The plugin exposes entries for {@link #plugins.Toolbar|Toolbar},
* {@link #plugins.DrawerMenu|DrawerMenu}, {@link #plugins.BurgerMenu|BurgerMenu},
* and {@link #plugins.SidebarMenu|SidebarMenu}.
*
* @name Settings
* @class
* @memberof plugins
* @static
*
* @prop {object} [cfg.overrideSettings] Overrides the visibility of built-in sections. The default is `{language: false, history: false}`.
* @prop {boolean} [cfg.overrideSettings.language] Set to `true` to show the language selector or `false` to hide it.
* @prop {boolean} [cfg.overrideSettings.history] Set to `true` to show the navigation-history undo/redo controls or `false` to hide them.
*/
export default {
SettingsPlugin: Object.assign(SettingsPlugin, {
Expand Down
Loading