Merge pull request #649 from romainneutron/fix-1473

[3.8] Fix 1473 : Classic display on firefox is broken
This commit is contained in:
Romain Neutron
2013-09-18 02:15:21 -07:00
2 changed files with 32 additions and 31 deletions

View File

@@ -607,6 +607,7 @@ img.ui-datepicker-trigger{
#grid,#grid tr, #grid td{
z-index:50;
text-align:center;
}
.diapo
{

View File

@@ -223,16 +223,16 @@ function pquit(){
function resize(){
var h = bodySize.y = $(window).height() - $('#mainMenu').outerHeight();
var w = bodySize.x = $(window).width();
var h = bodySize.y = $(document).height() - $('#mainMenu').outerHeight();
var w = bodySize.x = $(document).width();
controlPubliSize();
var rightw = w - 265;
rightw = ((rightw) > 0) ? rightw : 0;
$('#container').height($(window).height());
$('#container').width($(window).width());
$('#container').height($(document).height());
$('#container').width($(document).width());
$('#right').width(rightw);
$('#answers').height(h - $('#nb_answersEXT').outerHeight() - $('#navigation').outerHeight() - 20);