summaryrefslogtreecommitdiff
path: root/web/public
diff options
context:
space:
mode:
authorJochen Topf <jochen@topf.org>2014-05-16 10:00:45 +0200
committerJochen Topf <jochen@topf.org>2014-05-16 10:00:45 +0200
commitefc46707ec3fc8e680081afe4a4b21d2af6ca634 (patch)
tree217f1ab9089cb5d8c4069c5a9ffa37359f298357 /web/public
parent8addee3d7b3e1f745a75f3dbdcf278277801835a (diff)
downloadtaginfo-efc46707ec3fc8e680081afe4a4b21d2af6ca634.tar
taginfo-efc46707ec3fc8e680081afe4a4b21d2af6ca634.tar.gz
Better display of prevalent values on key comparison page.
Diffstat (limited to 'web/public')
-rw-r--r--web/public/js/taginfo.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/public/js/taginfo.js b/web/public/js/taginfo.js
index b6dcca2..47d949e 100644
--- a/web/public/js/taginfo.js
+++ b/web/public/js/taginfo.js
@@ -391,7 +391,7 @@ function fmt_prevalent_value_list(key, list) {
return empty(texts.misc.values_less_than_one_percent);
}
return jQuery.map(list, function(item, i) {
- return link_to_value(key, item.value, { tipsy: 'e', title: '(' + fmt_as_percent(item.fraction) + ')' });
+ return link_to_value(key, item.value, { tipsy: 'e', title: fmt_as_percent(item.fraction) });
}).join(' &bull; ');
}