From a0cfd0b270ffd42bda109e74040b3ea28161b6ef Mon Sep 17 00:00:00 2001 From: Adam Kocoloski Date: Sun, 29 Aug 2010 19:09:21 -0400 Subject: only display counter portion of cluster update_seq in Futon We should provide access to the full sequence in Futon somehow, as it's useful for things like changes since "now". --- rel/overlay/share/www/script/futon.browse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rel') diff --git a/rel/overlay/share/www/script/futon.browse.js b/rel/overlay/share/www/script/futon.browse.js index 5f687941..c8c1c420 100644 --- a/rel/overlay/share/www/script/futon.browse.js +++ b/rel/overlay/share/www/script/futon.browse.js @@ -61,7 +61,7 @@ $("#databases tbody.content tr:eq(" + idx + ")") .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); + .find("td.seq").text(info.update_seq.split("-")[0]); }, error : function() {} }); -- cgit v1.2.3