Remove unneeded code.

This commit is contained in:
bmauger 2022-02-03 13:09:27 -05:00
parent e6a5648a59
commit 0cbcbd8212

View file

@ -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");