fixing footer image height issue
This commit is contained in:
parent
c8b13c03ef
commit
a9e4d3be6f
1 changed files with 1 additions and 7 deletions
|
|
@ -37,7 +37,6 @@
|
|||
<script>
|
||||
import textLink from "@/ux-components/text-link/text-link";
|
||||
import buttonMain from "@/ux-components/button-main/button-main";
|
||||
import { issPageValues } from "@/router/router-constants/issPage-values"
|
||||
|
||||
export default {
|
||||
name: "siteFooter",
|
||||
|
|
@ -58,7 +57,7 @@ export default {
|
|||
};
|
||||
},
|
||||
mounted() {
|
||||
this.paddingHeight = this.includeFooterImage ? this.getFooterInfoBoxHeight() + 89 : this.getFooterInfoBoxHeight() + 24;
|
||||
this.paddingHeight = this.getFooterInfoBoxHeight() + 24;
|
||||
this.$nextTick(() => {
|
||||
window.addEventListener("resize", this.onResize);
|
||||
});
|
||||
|
|
@ -82,11 +81,6 @@ export default {
|
|||
{
|
||||
return this.getCmsContent(this.cmsWidgetName, "FooterImageURL");
|
||||
},
|
||||
includeFooterImage()
|
||||
{
|
||||
const currentPageName = this.getPageNameByQueryString();
|
||||
return (currentPageName.toLowerCase() == issPageValues.WELCOME_PAGE);
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onResize() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue