From 0b29ed292af2b45978ffcd8d5fc5fc9e5d775cbc Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 10 Jul 2013 16:04:33 +0100 Subject: [PATCH] Do not emit parentheses around term counts. --- tools/htdocs/mkws.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 7625589..d29e1d5 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -215,7 +215,7 @@ function add_single_facet(acc, caption, data, max, cclIndex) { action = 'limitQuery(\'' + cclIndex + '\', this.firstChild.nodeValue)'; } acc.push('onclick="' + action + ';return false;">' + data[i].name + '' - + ' (' + data[i].freq + ')'); + + ' ' + data[i].freq + ''); acc.push(''); } acc.push(''); -- 1.7.10.4