Semicolons

This commit is contained in:
John Firebaugh
2013-04-23 14:31:24 -07:00
parent 29e5bf1f2f
commit 2d62a78ac9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ iD.behavior.drag = function() {
};
function mousedown() {
target = this,
target = this;
event_ = event.of(target, arguments);
var eventTarget = d3.event.target,
touchId = d3.event.touches ? d3.event.changedTouches[0].identifier : null,
+1 -1
View File
@@ -34,7 +34,7 @@ iD.ui.preset.localized = function(field, context) {
function change() {
var t = {};
t[field.key] = d3.select(this).property('value'),
t[field.key] = d3.select(this).property('value');
event.change(t);
}