From 98d9ece58d0317c8b66e6be5cc74fe1c75e1f272 Mon Sep 17 00:00:00 2001 From: Thomas Huang Date: Tue, 3 Jan 2017 15:41:23 -0800 Subject: [PATCH] Add target blank to anchor link to open in new tab --- .../json-apis-and-ajax.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/json-apis-and-ajax.json b/seed/challenges/01-front-end-development-certification/json-apis-and-ajax.json index 426a7008a80..4efa9e42af9 100644 --- a/seed/challenges/01-front-end-development-certification/json-apis-and-ajax.json +++ b/seed/challenges/01-front-end-development-certification/json-apis-and-ajax.json @@ -487,7 +487,7 @@ "By selecting allow you will see the text on the output phone change to your latitude and longitude", "Here's some code that does this:", "
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
$(\"#data\").html(\"latitude: \" + position.coords.latitude + \"<br>longitude: \" + position.coords.longitude);
});
}
", - "Don't forget to use double quotes around selectors as mentioned here." + "Don't forget to use double quotes around selectors as mentioned here." ], "challengeSeed": [ "fccss",