From a1a77d25cd50cbd81006e925728b90e812ff19f5 Mon Sep 17 00:00:00 2001 From: Ansis Brammanis Date: Sun, 10 Mar 2013 00:21:42 -0500 Subject: [PATCH] fix name input --- js/id/ui/tag_editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/id/ui/tag_editor.js b/js/id/ui/tag_editor.js index 74c36de2b..3bef1b1a9 100644 --- a/js/id/ui/tag_editor.js +++ b/js/id/ui/tag_editor.js @@ -71,7 +71,7 @@ iD.ui.TagEditor = function(context) { .attr('type', 'text') .property('value', entity.tags.name || '') .on('blur', function() { - event.changeTags(); + changeTags({ name: name.property('value') }); }); presetUI = iD.ui.preset(context)