remove tag reference wrapper

fixes #1174
This commit is contained in:
Ansis Brammanis
2013-03-28 12:47:30 -04:00
parent 849eadca23
commit bf8c56d4f4
+2 -3
View File
@@ -27,8 +27,7 @@ iD.ui.TagReference = function(entity, tag) {
}
function tagReference(selection) {
wrap = selection.append('div')
.attr('class', 'tag-help cf');
wrap = selection.classed('tag-help', true);
}
tagReference.show = function() {
@@ -103,4 +102,4 @@ iD.ui.TagReference = function(entity, tag) {
};
return tagReference;
};
};