diff --git a/projects/common/src/fm/actions/app-common.actions.ts b/projects/common/src/fm/actions/app-common.actions.ts
index b37ed99..99955f9 100644
--- a/projects/common/src/fm/actions/app-common.actions.ts
+++ b/projects/common/src/fm/actions/app-common.actions.ts
@@ -66,6 +66,8 @@ export const TOGGLEAPPMENU = '[AppCommon] ToggleAppMenu';
export const TOGGLENOTIFICATIONMENU = '[AppCommon] ToggleNotificationMenu';
+export const TOGGLEHELPMENU = '[AppCommon] ToggleHelpMenu';
+
export const SETMENUVISIBLE = '[AppCommon] SetMenuVisible';
export const ONLINE = '[AppCommon] Online';
@@ -307,6 +309,12 @@ export class ToggleNotificationMenu implements Action {
constructor() { }
}
+export class ToggleHelpMenu implements Action {
+ readonly type = TOGGLEHELPMENU;
+
+ constructor() { }
+}
+
export class SetMenuVisible implements Action {
readonly type = SETMENUVISIBLE;
@@ -373,6 +381,7 @@ export type Actions = OpenModal
| SetPageMode
| ToggleAppMenu
| ToggleNotificationMenu
+ | ToggleHelpMenu
| NotificationEvent;
diff --git a/projects/common/src/fm/common.module.ts b/projects/common/src/fm/common.module.ts
index 674f959..ba7a2bb 100644
--- a/projects/common/src/fm/common.module.ts
+++ b/projects/common/src/fm/common.module.ts
@@ -58,6 +58,7 @@ import { GradientComponent } from './components/gradient/gradient.component';
import { GradientSelectComponent } from './components/gradient-select/gradient-select.component';
import { AppMenuComponent } from './components/app-menu/app-menu.component';
import { NotificationMenuComponent} from './components/notification-menu/notification-menu.component';
+import { HelpMenuComponent} from './components/help-menu/help-menu.component';
import { BackButtonComponent } from './components/back-button/back-button.component';
export {
@@ -135,6 +136,7 @@ export {
GradientSelectComponent,
AppMenuComponent,
NotificationMenuComponent,
+ HelpMenuComponent,
BackButtonComponent,
ThumbnailComponent
],
diff --git a/projects/common/src/fm/components/app/app.component.html b/projects/common/src/fm/components/app/app.component.html
index e9823ba..05c889e 100644
--- a/projects/common/src/fm/components/app/app.component.html
+++ b/projects/common/src/fm/components/app/app.component.html
@@ -31,6 +31,7 @@