{% extends '@CadolesCore/base.html.twig' %} {% block pagewrapper %} {% if minefamily == "image" %} {% if prev is not empty %}
{% endif %} {% if next is not empty %}
{% endif %} {% else %} {% endif %} {% endblock %} {% block localjavascript %} $(document).ready(function() { $(window).resize(function() { AjustFrame(); }); AjustFrame(); }); // Ajustement des frames function AjustFrame() { var heightbody = $('html').height(); var heightheader = $('.nav').height(); var heightframe = heightbody-heightheader-50; var widthbody = $('body').width(); if($("#frameviewfile").length>0) { $("#frameviewfile").height(heightframe); } if($("#image").length>0) { widthbody=widthbody-250; if(widthbody<950) widthbody="100%"; //$("#image").css({}); $("#image").css("height","auto"); $("#image").css("max-width",widthbody); if($("#image").height()>heightframe) $("#image").css({height:heightframe}); } } {% endblock %}