Fix scrolling on mobile
This commit is contained in:
parent
e2236864e7
commit
2cc22f4f90
@ -585,7 +585,9 @@ script.
|
||||
$(window).on("load resize",function(){
|
||||
containerResizeY($(window).height());
|
||||
|
||||
project_container.style.height = (window.innerHeight - project_container.offsetTop) + "px";
|
||||
if ($(window).width() > 480) {
|
||||
project_container.style.height = (window.innerHeight - project_container.offsetTop) + "px";
|
||||
}
|
||||
});
|
||||
|
||||
if (projectTree){
|
||||
|
Loading…
x
Reference in New Issue
Block a user