add call back link
This commit is contained in:
parent
be19e1ecee
commit
77683b5972
1 changed files with 23 additions and 0 deletions
|
|
@ -146,6 +146,13 @@
|
|||
cmsWidgetName="SiteFooterWidget"
|
||||
:isForwardActionDisabled="!meta.valid"
|
||||
@ForwardClicked="forwardButtonAction" />
|
||||
<textBlock
|
||||
id="requestCallbackLink"
|
||||
cmsWidgetName="HelpTextWidget"
|
||||
linkType="navigation"
|
||||
href="javascript:void(0)"
|
||||
class="mt-3 text-left"
|
||||
@clickEvent="handleHelpLinkClick" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -474,6 +481,13 @@ export default {
|
|||
this.mainStore.order.loadedFromCookie = true;
|
||||
this.answeredContinueModal = true;
|
||||
this.$refs.continueModal.closeModal();
|
||||
},
|
||||
handleHelpLinkClick() {
|
||||
useMainStore().setBailout(bailoutMessage.RequestCallback());
|
||||
this.$router.navigate(
|
||||
this.navigationScenarios.CLICKED_FORWARD_WITH_BAILOUT,
|
||||
this.$route
|
||||
);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
@ -497,6 +511,15 @@ form {
|
|||
}
|
||||
}
|
||||
|
||||
// Remove underline from help text links
|
||||
:deep(.text-block a) {
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-document url-prefix() {
|
||||
// Temporary solution that prevents the Continue button from being hidden in Firefox
|
||||
#welcomeFooter {
|
||||
|
|
|
|||
Loading…
Reference in a new issue