From d7e0687f4ecd82af8f2cf25d6a0ba676ee051e23 Mon Sep 17 00:00:00 2001 From: Christopher Lenz Date: Thu, 10 Apr 2008 10:27:56 +0000 Subject: Add DB compaction button to Futon. Closes COUCHDB-38. Thanks to Jim Lindley for the patch! git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@646734 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/browse.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'share/www/script/browse.js') diff --git a/share/www/script/browse.js b/share/www/script/browse.js index cd9b8bd9..7fafc252 100644 --- a/share/www/script/browse.js +++ b/share/www/script/browse.js @@ -84,6 +84,14 @@ function CouchDatabasePage() { }); } + this.compactDatabase = function() { + $.showDialog("_compact_database.html", { + submit: function() { + db.compact(); + } + }); + } + this.deleteDatabase = function() { $.showDialog("_delete_database.html", { submit: function() { -- cgit v1.2.3