Fix scrolling on sidebar for posts

This commit is contained in:
2016-12-01 16:42:17 +01:00
parent ffdffdeb96
commit 86b5c1b242
2 changed files with 24 additions and 0 deletions

View File

@@ -93,4 +93,16 @@ script.
window.location.replace("{{url_for('nodes.posts_edit', post_id=node._id)}}");
});
{% endif %}
var project_container = document.getElementById('project-container');
/* UI Stuff */
$(window).on("load resize",function(){
containerResizeY($(window).height());
if ($(window).width() > 480) {
project_container.style.height = (window.innerHeight - project_container.offsetTop) + "px";
}
});
| {% endblock %}