From 3d3415b5be591dcda79f70c14e009a52fe2bf5fa Mon Sep 17 00:00:00 2001 From: Aaron Lidman Date: Tue, 15 Oct 2013 11:46:21 -0400 Subject: [PATCH] Prevent 'zoom in to edit' from showing up during save success, closes #1792 Sets a background color, the same as the save state. --- js/id/ui/success.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/id/ui/success.js b/js/id/ui/success.js index 5ee55e4a4..0f4bde80d 100644 --- a/js/id/ui/success.js +++ b/js/id/ui/success.js @@ -19,7 +19,7 @@ iD.ui.Success = function(context) { .text(t('success.just_edited')); var body = selection.append('div') - .attr('class', 'body save-success'); + .attr('class', 'body save-success fillL'); body.append('p') .html(t('success.help_html'));