diff options
author | Christopher Lenz <cmlenz@apache.org> | 2008-10-01 13:52:59 +0000 |
---|---|---|
committer | Christopher Lenz <cmlenz@apache.org> | 2008-10-01 13:52:59 +0000 |
commit | 57f2e6a118dc57af6dbd6c377b60bae7fdcd3d22 (patch) | |
tree | 9ed078c70e49c2a3e62f91783b5f60b019599d01 /share/www/script/browse.js | |
parent | a502eb9880d20dbd69ac206e5145c646fdb26232 (diff) |
Make the database list in the sidebar in Futon a list of the 10 most recently used databases, to avoid excessive script/render time with instances containing very many databases.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@700767 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/browse.js')
-rw-r--r-- | share/www/script/browse.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/share/www/script/browse.js b/share/www/script/browse.js index 82f9eeff..6abcb073 100644 --- a/share/www/script/browse.js +++ b/share/www/script/browse.js @@ -26,7 +26,6 @@ function CouchIndexPage() { $.couch.db(data.name).create({ error: function(status, id, reason) { callback({name: reason}) }, success: function(resp) { - if (window !== parent) parent.setTimeout("updateDatabaseList()", 500); location.href = "database.html?" + encodeURIComponent(data.name); callback(); } |