From 2bcbbfcae0a39d8a4187e6178285b5e39b19bf64 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 20 Mar 2019 15:56:08 +0300 Subject: [PATCH] up --- 7-network/04-fetch-crossorigin/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-network/04-fetch-crossorigin/article.md b/7-network/04-fetch-crossorigin/article.md index 2acce4f5..f4846f62 100644 --- a/7-network/04-fetch-crossorigin/article.md +++ b/7-network/04-fetch-crossorigin/article.md @@ -71,7 +71,7 @@ function gotWeather({ temperature, humidity }) { // 2. Pass its name as the ?callback parameter for the script let script = document.createElement('script'); -script.src = `http://cors.javascript.local/article/fetch-crossorigin/demo/script?callback=gotWeather`; +script.src = `https://cors.javascript.info/article/fetch-crossorigin/demo/script?callback=gotWeather`; document.body.append(script); // 3. The expected answer from the server looks like this: