diff options
author | Jan Lehnardt <jan@apache.org> | 2010-06-03 15:05:07 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2010-06-03 15:05:07 +0000 |
commit | 6026881bc7949a0af6a213b0c87b0cb52ee3f059 (patch) | |
tree | 5437bf051ca38c5f02b11a6a44b3aa1a3cb6fdf4 /share/www | |
parent | 50e4e3bfccb863e7a4a61306b2121828509ed261 (diff) |
Futon: sort databases in replicator source and target drop-down.
Patch by Miki Tebeka.
Closes COUCHDB-785.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@951019 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www')
-rw-r--r-- | share/www/replicator.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/share/www/replicator.html b/share/www/replicator.html index 6d980cbd..9a53e0ea 100644 --- a/share/www/replicator.html +++ b/share/www/replicator.html @@ -41,6 +41,7 @@ specific language governing permissions and limitations under the License. $.couch.allDbs({ success: function(dbs) { + dbs.sort(); $("fieldset select").each(function() { var select = this; $.each(dbs, function(idx, dbName) { |