From 6b828b47a548faa7e175b3f20896363f70ed8959 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 16 Apr 2019 23:39:45 +0000 Subject: [PATCH] --- ayanova/src/App.vue | 4 ++-- ayanova/src/views/inventory-widget-edit.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ayanova/src/App.vue b/ayanova/src/App.vue index 65bc393c..e788e94d 100644 --- a/ayanova/src/App.vue +++ b/ayanova/src/App.vue @@ -183,9 +183,9 @@ export default { this.$gzevent.$on("menu-click", function(key) { if (key.startsWith("app:")) { if (key.startsWith("app:help:")) { + // "https://www.ayanova.com/AyaNova7webHelp/" + var helpurl = - "https://www.ayanova.com/AyaNova7webHelp/" + - key.replace("app:help:", ""); + that.$store.state.helpUrl + key.replace("app:help:", ""); window.open(helpurl, "_blank"); } else { alert("STUB: App.vue::menu click: " + key); diff --git a/ayanova/src/views/inventory-widget-edit.vue b/ayanova/src/views/inventory-widget-edit.vue index c7e7b79d..d423dfb0 100644 --- a/ayanova/src/views/inventory-widget-edit.vue +++ b/ayanova/src/views/inventory-widget-edit.vue @@ -183,7 +183,7 @@ export default { { title: "DUPLICATE", icon: "clone", key: "duplicate" }, { title: "SAVE", icon: "save", key: "save" }, { title: "DELETE", icon: "trash-alt", key: "delete" }, - { title: "HELP", key: "app:help:clients_entry_screen.htm" } + { title: "HELP", key: "app:help:intro/#searching" } ] }); this.$gzevent.$on("menu-click", clickHandler);