From 34642526ff78b199adf3404c061641e4cd6c0f22 Mon Sep 17 00:00:00 2001 From: samanpwbb Date: Tue, 10 Feb 2015 14:41:06 -0500 Subject: [PATCH] jshint --- js/id/modes/save.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/id/modes/save.js b/js/id/modes/save.js index e87f00830..fe4672fa3 100644 --- a/js/id/modes/save.js +++ b/js/id/modes/save.js @@ -16,7 +16,7 @@ iD.modes.Save = function(context) { function choice(text, actions, id) { return { text: text, - action: function() { context.perform.apply(this, actions) }, + action: function() { context.perform.apply(this, actions); }, id: id }; } @@ -202,7 +202,7 @@ iD.modes.Save = function(context) { }) .text(t('save.conflict.download_changes')); - var message = body.append('div') + body.append('div') .attr('class','message-text conflicts-message-text'); addConflictItems(confirm, conflicts);