This commit is contained in:
@@ -526,7 +526,12 @@ function clickHandler(menuItem) {
|
||||
window.$gz.store.state.globalSettings.serverDbId
|
||||
);
|
||||
break;
|
||||
|
||||
case "eula":
|
||||
window.$gz.eventBus.$emit("menu-click", {
|
||||
key: "app:help",
|
||||
data: "license"
|
||||
});
|
||||
break;
|
||||
default:
|
||||
window.$gz.eventBus.$emit(
|
||||
"notify-warning",
|
||||
@@ -576,7 +581,10 @@ function generateMenu(vm) {
|
||||
vm: vm
|
||||
});
|
||||
}
|
||||
|
||||
menuOptions.menuItems.push({
|
||||
title: "ViewEULA",
|
||||
key: FORM_KEY + ":eula"
|
||||
});
|
||||
window.$gz.eventBus.$emit("menu-change", menuOptions);
|
||||
}
|
||||
|
||||
@@ -630,7 +638,8 @@ async function fetchTranslatedText() {
|
||||
"HelpReleaseKey",
|
||||
"HelpRestore",
|
||||
"CopyDbId",
|
||||
"UserCountExceeded"
|
||||
"UserCountExceeded",
|
||||
"ViewEULA"
|
||||
]);
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -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"
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user