diff options
author | John Christopher Anderson <jchris@apache.org> | 2010-07-07 01:05:01 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2010-07-07 01:05:01 +0000 |
commit | dc72d72058f2fef88bf2cd3d876501c2d0344939 (patch) | |
tree | b032bb90817b669c019d61d0c1d31703d0b29661 /share/www | |
parent | 57c207603a0d85ecb43c81393f95d62864b4aaf1 (diff) |
avoid Futon popup when listing databases that cant be accessed
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@961052 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-rw-r--r-- | share/www/script/futon.browse.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/share/www/script/futon.browse.js b/share/www/script/futon.browse.js index 354a6a60..0e8b4213 100644 --- a/share/www/script/futon.browse.js +++ b/share/www/script/futon.browse.js @@ -62,7 +62,8 @@ .find("td.size").text($.futon.formatSize(info.disk_size)).end() .find("td.count").text(info.doc_count).end() .find("td.seq").text(info.update_seq); - } + }, + error : function() {} }); }); $("#databases tbody tr:odd").addClass("odd"); |