From fc10b009f86768ac4311ac70a2fcce61aeee818c Mon Sep 17 00:00:00 2001 From: jbousquie Date: Tue, 22 Nov 2016 10:41:40 +0100 Subject: [PATCH] fix erreurXHR --- admin/salles_live.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/salles_live.php b/admin/salles_live.php index 0e21233..7d835d4 100644 --- a/admin/salles_live.php +++ b/admin/salles_live.php @@ -158,7 +158,7 @@ function InfoCouleurs() { }; // fonction d'affichage d'erreur dans la console - var erreurXHR = function(url) { + var erreurXHR = function(url, xhr) { console.log("erreur chargement" + url + " : " + xhr.statusText); }; @@ -253,12 +253,12 @@ function InfoCouleurs() { enroule(enrouleurs); } else { - erreurXHR(url); + erreurXHR(url, xhr); } } }; xhr.onerror = function(e) { - erreurXHR(url); + erreurXHR(url, xhr); }; xhr.send(null); // initie la requĂȘte xhr