"REmove french from tetawebapp.js"

This commit is contained in:
Doug Le Tough 2017-11-26 03:03:06 +01:00
parent 2f0811ecb4
commit 98a976616c
1 changed files with 2 additions and 2 deletions

View File

@ -67,12 +67,12 @@ function get_html_from_ajax(obj, url) {
// HTML content is then put as innerHTML to obj
var xhttp = new XMLHttpRequest();
xhttp.onerror = function(){
obj.innerHTML = "Erreur lors de la récuperation du contenu (1)";
obj.innerHTML = "Error while getting content (1)";
};
xhttp.onload = function(){
if (xhttp.status != 200) {
obj.innerHTML = "Erreur lors de la récuperation du contenu (2)";
obj.innerHTML = "Error while getting content (2)";
}
};