From 693ad91f860dfd0fd9faebed1e24b66b71d20f14 Mon Sep 17 00:00:00 2001 From: Zhao Han Date: Mon, 4 May 2015 00:27:33 -0500 Subject: [PATCH] Update website header link github url HTTPS ``` $ curl -I http://github.com/facebook/react-native HTTP/1.1 301 Moved Permanently Content-length: 0 Location: https://github.com/facebook/react-native Connection: close ``` This saves some network time. --- website/core/HeaderLinks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/core/HeaderLinks.js b/website/core/HeaderLinks.js index 7a481ed295..32c371a7dc 100644 --- a/website/core/HeaderLinks.js +++ b/website/core/HeaderLinks.js @@ -17,7 +17,7 @@ var HeaderLinks = React.createClass({ {section: 'support', href: '/react-native/support.html', text: 'Support'}, ], linksExternal: [ - {section: 'github', href: 'http://github.com/facebook/react-native', text: 'GitHub'}, + {section: 'github', href: 'https://github.com/facebook/react-native', text: 'GitHub'}, {section: 'react', href: 'http://facebook.github.io/react', text: 'React'}, ],