Do not emit parentheses around term counts.
authorMike Taylor <mike@indexdata.com>
Wed, 10 Jul 2013 15:04:33 +0000 (16:04 +0100)
committerMike Taylor <mike@indexdata.com>
Wed, 10 Jul 2013 15:04:33 +0000 (16:04 +0100)
tools/htdocs/mkws.js

index 7625589..d29e1d5 100644 (file)
@@ -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 + '</a>'
-                + '<span> (' + data[i].freq + ')</span>');
+                + ' <span>' + data[i].freq + '</span>');
        acc.push('</div>');
     }
     acc.push('</div>');