From 6dc3aa269dcb2dac31bf3252b13d6e706c5f125b Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Sat, 10 Aug 2013 10:56:44 -0700 Subject: [PATCH] Include low-frequency tag values if they have a wiki entry --- js/id/services/taginfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/id/services/taginfo.js b/js/id/services/taginfo.js index 2c5fda700..6ef8cbd98 100644 --- a/js/id/services/taginfo.js +++ b/js/id/services/taginfo.js @@ -55,7 +55,7 @@ iD.taginfo = function() { } function popularValues() { - return function(d) { return parseFloat(d.fraction) > 0.01; }; + return function(d) { return parseFloat(d.fraction) > 0.01 || d.in_wiki; }; } function valKey(d) { return { value: d.key }; }