WIP footer modal code updates.
This commit is contained in:
parent
5ee7b98ca2
commit
d8c3df968c
7 changed files with 10 additions and 5 deletions
|
|
@ -25,7 +25,6 @@ module.exports = {
|
||||||
"!src/layouts/address-lookup/customer-questions/address-questions/address-questions.vue",
|
"!src/layouts/address-lookup/customer-questions/address-questions/address-questions.vue",
|
||||||
"!src/ux-components/alert\alert.vue",
|
"!src/ux-components/alert\alert.vue",
|
||||||
"!src/helpers/validation-rules.js",
|
"!src/helpers/validation-rules.js",
|
||||||
"!src/common-components/menu-modal/menu-modal.vue",
|
|
||||||
// END
|
// END
|
||||||
], // ! means exclude from coverage.
|
], // ! means exclude from coverage.
|
||||||
testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"],
|
testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"],
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
|
<div class="row" :style="`padding-bottom: ${paddingHeight}px`"></div>
|
||||||
<footer class="footer container-fluid fixed-bottom g-5 bg-light py-4" id="infoBox">
|
<footer class="footer container-fluid fixed-bottom g-5 bg-light py-4" id="infoBox">
|
||||||
<div class="row d-flex flex-row-reverse align-items-center vw-100">
|
<div class="row d-flex flex-row-reverse align-items-center vw-100">
|
||||||
<div class="col button-col d-flex" id="stacked">
|
<div class="col button-col d-flex" id="stacked">
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
import alert from "@/ux-components/alert/alert";
|
import alert from "@/ux-components/alert/alert";
|
||||||
import eventBus from "@/helpers/event-bus/event-bus";
|
import eventBus from "@/helpers/event-bus/event-bus";
|
||||||
import { globalEvents } from "@/constants/events";
|
import { globalEvents } from "@/constants/events";
|
||||||
import menuModal from "@/common-components/menu-modal/menu-modal";
|
import menuModal from "@/common-components/funnel-header/menu-modal/menu-modal";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "funnel-header",
|
name: "funnel-header",
|
||||||
|
|
|
||||||
|
|
@ -41,10 +41,15 @@ export default {
|
||||||
var self = this;
|
var self = this;
|
||||||
myModalEl.addEventListener('hide.bs.modal', function (event) {
|
myModalEl.addEventListener('hide.bs.modal', function (event) {
|
||||||
self.isActive = false;
|
self.isActive = false;
|
||||||
|
event.prevenDefault();
|
||||||
});
|
});
|
||||||
myModalEl.addEventListener('show.bs.modal', function (event) {
|
myModalEl.addEventListener('show.bs.modal', function (event) {
|
||||||
self.currentFooterAndHeaderHeight = self.getFooterInfoBoxHeight() + 72;
|
self.currentFooterAndHeaderHeight = self.getFooterInfoBoxHeight() + 72;
|
||||||
self.isActive = true;
|
self.isActive = true;
|
||||||
|
console.log("scroll!!!");
|
||||||
|
document.querySelector('.page-container-grouped-styles').scrollTo({
|
||||||
|
top: 0, behavior: 'smooth'
|
||||||
|
});
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
|
|
@ -71,6 +76,7 @@ export default {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
padding: 0;//Required to prevent 'squish' on iPhone
|
||||||
z-index: 1056;
|
z-index: 1056;
|
||||||
.bar1,
|
.bar1,
|
||||||
.bar2,
|
.bar2,
|
||||||
|
|
@ -1089,7 +1089,7 @@
|
||||||
import textboxQuestion from "@/common-components/textbox-question/textbox-question";
|
import textboxQuestion from "@/common-components/textbox-question/textbox-question";
|
||||||
import dropdownQuestion from "@/common-components/dropdown-question/dropdown-question";
|
import dropdownQuestion from "@/common-components/dropdown-question/dropdown-question";
|
||||||
import vinInformation from "@/layouts/vin-lookup/vin-information/vin-information";
|
import vinInformation from "@/layouts/vin-lookup/vin-information/vin-information";
|
||||||
import menuModal from "@/common-components/menu-modal/menu-modal";
|
import menuModal from "@/common-components/funnel-header/menu-modal/menu-modal";
|
||||||
export default {
|
export default {
|
||||||
name: "App",
|
name: "App",
|
||||||
components: {
|
components: {
|
||||||
|
|
|
||||||
|
|
@ -53,8 +53,7 @@ body {
|
||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
max-width: 576px;
|
max-width: 576px;
|
||||||
height: calc(100% - 152px);
|
height: calc(100% - 72px);
|
||||||
top: 72px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue