Fix scrolling on mobile

This commit is contained in:
Pablo Vazquez 2016-09-30 11:27:46 +02:00
parent e2236864e7
commit 2cc22f4f90

View File

@ -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){