Skip to content
Snippets Groups Projects
Commit e49fb8d6 authored by Kent Nielsen's avatar Kent Nielsen
Browse files

Fixing bug where footer would disappear

parent e3bf18fa
No related branches found
No related tags found
2 merge requests!29Release of Prototype,!21Feature/mobile layout
Pipeline #52194 passed
......@@ -42,7 +42,7 @@ export default {
mouseDragPos: {x: 0, y: 0},
verticalResizeObject: {index: 0},
horizontalResizeObject: {row: 0, col: 0},
prevWinWidth: 0
prevWinWidth: 1000
}
},
......@@ -158,8 +158,8 @@ export default {
},
mounted(){
this.prevWinWidth = window.innerWidth;
this.mobileLayoutResize();
this.prevWinWidth = window.innerWidth;
window.addEventListener('resize', this.mobileLayoutResize);
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment