From 166bc5de5b5149bf0baccd1f930e8484f1bca117 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Sun, 29 Sep 2013 07:46:45 -0700 Subject: [PATCH] Clean up --- js/id/ui/restore.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/js/id/ui/restore.js b/js/id/ui/restore.js index 32169c5be..3fcbefb00 100644 --- a/js/id/ui/restore.js +++ b/js/id/ui/restore.js @@ -15,12 +15,12 @@ iD.ui.Restore = function(context) { introModal.append('div') .attr('class', 'modal-section') .append('h3') - .text(t('restore.heading')); + .text(t('restore.heading')); introModal.append('div') .attr('class','modal-section') .append('p') - .text(t('restore.description')); + .text(t('restore.description')); var buttonWrap = introModal.append('div') .attr('class', 'modal-actions cf'); @@ -43,6 +43,4 @@ iD.ui.Restore = function(context) { restore.node().focus(); }; - modal.select('button.close').attr('class','hide'); - };