From: Mike Taylor Date: Wed, 10 Jul 2013 15:04:33 +0000 (+0100) Subject: Do not emit parentheses around term counts. X-Git-Tag: 0.9.1~275^2~3 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=0b29ed292af2b45978ffcd8d5fc5fc9e5d775cbc Do not emit parentheses around term counts. --- 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('');