From 7fcf329ee876797f479980423ea917ae5bad0b99 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Tue, 12 Feb 2013 21:21:02 -0800 Subject: [PATCH] Fix browser_notice style --- js/id/ui.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/js/id/ui.js b/js/id/ui.js index 6e7322848..3db4f6ece 100644 --- a/js/id/ui.js +++ b/js/id/ui.js @@ -6,8 +6,12 @@ iD.ui = function(context) { map = context.map(); if (!iD.detect().support) { - container.text(t('browser_notice')) - .style('text-align:center;font-style:italic;'); + container + .text(t('browser_notice')) + .style({ + 'text-align': 'center', + 'font-style': 'italic' + }); return; }