This commit is contained in:
2020-06-13 19:23:39 +00:00
parent 1ddbeec447
commit 739216d325
2 changed files with 33 additions and 4 deletions

View File

@@ -113,7 +113,21 @@ export default {
type: "error"
});
},
/////////////////////////////////////
// Display LT message with wait for ok
//
displayLTModalNotificationMessage(
tKeyText,
tKeyTitle = undefined,
ttype = "info"
) {
return VM_LOCAL.$root.$gzconfirm({
message: tKeyText ? window.$gz.translation.get(tKeyText) : "",
title: tKeyTitle ? window.$gz.translation.get(tKeyTitle) : "",
yesButtonText: window.$gz.translation.get("OK"),
type: ttype
});
},
/////////////////////////////////////
// Custom confirmation
//