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/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/static/search.js') diff --git a/install/static/search.js b/install/static/search.js index fd123c09..62fffbe9 100644 --- a/install/static/search.js +++ b/install/static/search.js @@ -296,7 +296,7 @@ function search_load(container, criteria, on_win, on_fail) var search_results = $('.search-results', container); search_results.append('

Error: '+error_thrown.name+'

'); - search_results.append('

URL: '+this.url+'

'); + search_results.append('

'+error_thrown.title+'

'); search_results.append('

'+error_thrown.message+'

'); } -- cgit