From de3cc334eddff26a743e537f10055e5d6398ffa5 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 28 Oct 2010 09:50:34 -0500 Subject: Dialog boxes for AJAX, HTTP, and IPA errors. The ipa_cmd() has been modified to identity the type of the error it has received and display the error using the right dialog box. The dialog box can be customized further to display the appropriate amount of information for each type of error. --- install/static/details.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/static/details.js') diff --git a/install/static/details.js b/install/static/details.js index d4593d82..e4cbec77 100644 --- a/install/static/details.js +++ b/install/static/details.js @@ -335,7 +335,7 @@ function ipa_details_load(container, pkey, on_win, on_fail) var details = $('.details', container).empty(); details.append('

Error: '+error_thrown.name+'

'); - details.append('

URL: '+this.url+'

'); + details.append('

'+error_thrown.title+'

'); details.append('

'+error_thrown.message+'

'); } -- cgit