commit
This commit is contained in:
parent
190b964d07
commit
b94d80a3de
1 changed files with 2 additions and 4 deletions
|
|
@ -37,8 +37,6 @@
|
||||||
<script>
|
<script>
|
||||||
import textLink from "@/ux-components/text-link/text-link";
|
import textLink from "@/ux-components/text-link/text-link";
|
||||||
import buttonMain from "@/ux-components/button-main/button-main";
|
import buttonMain from "@/ux-components/button-main/button-main";
|
||||||
import { queryStrings } from "@/constants/query-strings";
|
|
||||||
import { issPageValues } from "@/router/router-constants/issPage-values"
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "siteFooter",
|
name: "siteFooter",
|
||||||
|
|
@ -59,7 +57,7 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.paddingHeight = queryStrings.ISS_PAGE.toLowerCase() == issPageValues.WELCOME_PAGE ? this.getFooterInfoBoxHeight() + 89 : this.getFooterInfoBoxHeight() + 24;
|
this.paddingHeight = this.getFooterInfoBoxHeight() + 24;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
window.addEventListener("resize", this.onResize);
|
window.addEventListener("resize", this.onResize);
|
||||||
});
|
});
|
||||||
|
|
@ -82,7 +80,7 @@ export default {
|
||||||
footerImageURL()
|
footerImageURL()
|
||||||
{
|
{
|
||||||
return this.getCmsContent(this.cmsWidgetName, "FooterImageURL");
|
return this.getCmsContent(this.cmsWidgetName, "FooterImageURL");
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onResize() {
|
onResize() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue