commit
This commit is contained in:
parent
8aed00aebd
commit
190b964d07
1 changed files with 2 additions and 1 deletions
|
|
@ -38,6 +38,7 @@
|
|||
import textLink from "@/ux-components/text-link/text-link";
|
||||
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 {
|
||||
name: "siteFooter",
|
||||
|
|
@ -58,7 +59,7 @@ export default {
|
|||
};
|
||||
},
|
||||
mounted() {
|
||||
this.paddingHeight = queryStrings.ISS_PAGE == "welcome-page" ? this.getFooterInfoBoxHeight() + 89 : this.getFooterInfoBoxHeight() + 24;
|
||||
this.paddingHeight = queryStrings.ISS_PAGE.toLowerCase() == issPageValues.WELCOME_PAGE ? this.getFooterInfoBoxHeight() + 89 : this.getFooterInfoBoxHeight() + 24;
|
||||
this.$nextTick(() => {
|
||||
window.addEventListener("resize", this.onResize);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue