Fix forward button in preset list

This commit is contained in:
John Firebaugh
2013-05-28 17:41:48 -07:00
parent 9b6b198b3f
commit 9fcea83872

View File

@@ -19,7 +19,7 @@ iD.ui.PresetList = function(context) {
if (currentPreset) {
messagewrap.append('button')
.attr('class', 'preset-choose')
.on('click', event.choose)
.on('click', function() { event.choose(currentPreset); })
.append('span')
.attr('class', 'icon forward');
} else {