From a56841bc6fd3b044aa70c480b05d0765f560a555 Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Fri, 18 May 2018 09:35:07 +0200 Subject: [PATCH] [docs] Use https for v0 URLs --- README.md | 2 +- pages/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a4eed0081fccf..309fc17b90f21a 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ npm install @material-ui/core yarn add @material-ui/core ``` -**[v0.x](http://v0.material-ui.com/)** +**[v0.x](https://v0.material-ui.com/)** ```sh // with npm npm install material-ui diff --git a/pages/index.js b/pages/index.js index fa9a73355266bc..666dcd3e55e9e0 100644 --- a/pages/index.js +++ b/pages/index.js @@ -77,7 +77,7 @@ const styles = theme => ({ class HomePage extends React.Component { componentDidMount() { if (window.location.hash !== '') { - window.location.replace(`http://v0.material-ui.com/${window.location.hash}`); + window.location.replace(`https://v0.material-ui.com/${window.location.hash}`); } }