From 950f0f9e08c6e6dd8dd6a4908d72acf41e6e2bdc Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 18 Nov 2007 23:25:21 +0000 Subject: Correctly show 401 errors. --- usr/local/www/headjs.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'usr') diff --git a/usr/local/www/headjs.php b/usr/local/www/headjs.php index e2b4e20..09b1b44 100644 --- a/usr/local/www/headjs.php +++ b/usr/local/www/headjs.php @@ -82,7 +82,7 @@ function getHeadJS() { var responseText = resp.responseText; // debugging helper - //alert(responseText); + alert(responseText); if(responseText.indexOf('html') > 0) { /* somehow we have been fed an html page! */ @@ -95,7 +95,14 @@ function getHeadJS() { /* this function will be called if an HTTP error will be triggered */ function formFailure(resp) { - alert('An error occured while saving the data ' + resp.responseText); + showajaxmessage(resp.responseText); + if($('submit')) + $('submit').style.visibility = 'visible'; + if($('cancelbutton')) + $('cancelbutton').style.visibility = 'visible'; + if($('loading')) + $('loading').style.visibility = 'hidden'; + } function showajaxmessage(message) { @@ -153,4 +160,4 @@ function getHeadJS() { return $headjs; } -?> +?> \ No newline at end of file -- cgit v1.1