This commit is contained in:
Dany De Bontridder 2013-12-26 23:46:50 +00:00
parent 3898618212
commit 20792baa73
2 changed files with 2 additions and 4 deletions

View file

@ -680,7 +680,7 @@ function removeDiv(elt)
function waiting_box()
{
obj = {
id: 'wait_box', html: loading()
id: 'wait_box', html: '<h2 class="title">Chargement</h2>'+loading()
};
var y = calcy(posY);
obj.style = fixed_position(posX, y) + ";width:200px";
@ -688,7 +688,7 @@ function waiting_box()
removeDiv('wait_box');
}
add_div(obj);
$('info_div').innerHTML = "Un instant";
$('info_div').innerHTML = 'Un instant';
$('info_div').style.display = "block";
}