This commit is contained in:
2022-02-12 01:09:54 +00:00
parent a50d73bcdb
commit ca2772df96
2 changed files with 25 additions and 4 deletions

View File

@@ -226,6 +226,11 @@ function generateMenu(vm) {
target: "_blank",
key: "about:contact"
});
menuOptions.menuItems.push({
title: "ViewEULA",
key: "about:eula"
});
}
window.$gz.eventBus.$emit("menu-change", menuOptions);
@@ -243,6 +248,12 @@ function clickHandler(menuItem) {
switch (m.key) {
case "contact":
break;
case "eula":
window.$gz.eventBus.$emit("menu-click", {
key: "app:help",
data: "license"
});
break;
case "copysupportinfo":
//put the support info on the clipboard:
{
@@ -299,7 +310,8 @@ async function fetchTranslatedText() {
"User",
"Browser",
"LanguageCode",
"CurrencyCode"
"CurrencyCode",
"ViewEULA"
]);
}