JSHint fixes

This commit is contained in:
Tom MacWright
2013-04-15 12:59:29 -04:00
parent 541ac0ad51
commit f091237b70
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
iD.operations.Disconnect = function(selection, context) {
var vertices = _.filter(selection, function vertex(entityId) {
return context.geometry(entityId) === 'vertex'
return context.geometry(entityId) === 'vertex';
});
var entityId = vertices[0],
+1 -1
View File
@@ -1,6 +1,6 @@
iD.operations.Split = function(selection, context) {
var vertices = _.filter(selection, function vertex(entityId) {
return context.geometry(entityId) === 'vertex'
return context.geometry(entityId) === 'vertex';
});
var entityId = vertices[0],
+1 -1
View File
@@ -4,7 +4,7 @@ iD.ui.Attribution = function(context) {
function update() {
if (!context.background().source()) {
selection.html('');
return
return;
}
var attribution = selection.selectAll('.provided-by')
+1 -1
View File
@@ -51,7 +51,7 @@ iD.ui.preset.access = function(field, context) {
return {
title: field.t('options.' + option + '.description'),
value: option
}
};
});
};