From 4e639808348838304b4af4a8bc520cfa15654ac9 Mon Sep 17 00:00:00 2001 From: saman bb Date: Thu, 30 May 2013 00:58:27 -0400 Subject: [PATCH] fix whitespace. --- js/id/ui/preset/radio.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/id/ui/preset/radio.js b/js/id/ui/preset/radio.js index 48a4ace93..8d7c7c3db 100644 --- a/js/id/ui/preset/radio.js +++ b/js/id/ui/preset/radio.js @@ -16,7 +16,7 @@ iD.ui.preset.radio = function(field) { .data(field.options || field.keys); buttons.enter().append('button') - .text(function(d) { return field.t('options.' + d, { 'default': d }); }); + .text(function(d) { return field.t('options.' + d, { 'default': d }); }); buttons .on('click', function(d) { @@ -29,7 +29,6 @@ iD.ui.preset.radio = function(field) { .attr('class','placeholder') .text(field.placeholder()); - var remove = wrap.selectAll('button.remove') .data([0]);