mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-19 15:08:23 +02:00
Fix global leaks
This commit is contained in:
@@ -106,13 +106,13 @@ iD.Inspector = function() {
|
||||
.on('keydown.push-more', pushMore)
|
||||
.each(bindTypeahead);
|
||||
|
||||
removeBtn = row.append('button')
|
||||
var removeBtn = row.append('button')
|
||||
.attr('class','remove minor')
|
||||
.on('click', removeTag);
|
||||
|
||||
removeBtn.append('span').attr('class', 'icon remove');
|
||||
|
||||
helpBtn = row.append('button').attr('class', 'tag-help minor').append('a')
|
||||
var helpBtn = row.append('button').attr('class', 'tag-help minor').append('a')
|
||||
.attr('target', '_blank')
|
||||
.attr('tabindex', -1)
|
||||
.attr('href', function(d) {
|
||||
|
||||
Reference in New Issue
Block a user