From 0cbcbd8212d333dbc455e648aa56b87023ef96cd Mon Sep 17 00:00:00 2001 From: bmauger Date: Thu, 3 Feb 2022 13:09:27 -0500 Subject: [PATCH] Remove unneeded code. --- src/common-components/funnel-footer/funnel-footer.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/common-components/funnel-footer/funnel-footer.vue b/src/common-components/funnel-footer/funnel-footer.vue index fa09e90af..c4b949f78 100644 --- a/src/common-components/funnel-footer/funnel-footer.vue +++ b/src/common-components/funnel-footer/funnel-footer.vue @@ -81,12 +81,9 @@ export default { checkHeight() { const parentHeight = document.getElementById('infoBox').clientHeight; const wrapper = document.getElementById('stacked'); - const goWide = document.getElementById('go-wide'); if (parentHeight > 80) { wrapper.classList.add("justify-content-start"); wrapper.classList.remove("justify-content-end"); - wrapper.classList.add("justify-content-start"); - wrapper.classList.remove("justify-content-end"); } else { wrapper.classList.add("justify-content-end"); wrapper.classList.remove("justify-content-start");