feat(mobile): display help modal (closes #666)

This commit is contained in:
Elian Doran
2025-01-04 18:41:51 +02:00
parent d3096940f6
commit 20b439b2cb
3 changed files with 3 additions and 5 deletions

View File

@@ -26,6 +26,7 @@ import PromotedAttributesWidget from "../widgets/ribbon_widgets/promoted_attribu
import ClassicEditorToolbar from "../widgets/ribbon_widgets/classic_editor_toolbar.js";
import SidebarContainer from "../widgets/mobile_widgets/sidebar_container.js";
import AboutDialog from "../widgets/dialogs/about.js";
import HelpDialog from "../widgets/dialogs/help.js";
const MOBILE_CSS = `
<style>
@@ -188,5 +189,6 @@ export default class MobileLayout {
.child(new GlobalMenuWidget(true))
.id("launcher-pane"))
.child(new AboutDialog())
.child(new HelpDialog())
}
}