Skip to content

Commit a20ea96

Browse files
aditya1906oliviertassinari
authored andcommitted
[docs] Change http to https part 2 (#16171)
1 parent 4f7aa9b commit a20ea96

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
1+
# EditorConfig is awesome: https://editorconfig.org/
22

33
# top-most EditorConfig file
44
root = true

.github/support.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ supportComment: |
99
👋 Thanks for using Material-UI!
1010
1111
We use the issue tracker exclusively for bug reports and feature requests, however,
12-
this issue appears to be a support request or question. Please ask on [StackOverflow](http://stackoverflow.com/questions/tagged/material-ui) where the
12+
this issue appears to be a support request or question. Please ask on [StackOverflow](https://stackoverflow.com/questions/tagged/material-ui) where the
1313
community will do their best to help. There is a "material-ui" tag that you can use to tag your
1414
question.
1515

SUPPORT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Asking Questions
44

5-
For how-to questions and other non-issues, please use [StackOverflow](http://stackoverflow.com/questions/tagged/material-ui) or [Spectrum](https://spectrum.chat/material-ui) chat instead of Github issues. There is a StackOverflow tag called "material-ui" that you can use to tag your questions.
5+
For how-to questions and other non-issues, please use [StackOverflow](https://stackoverflow.com/questions/tagged/material-ui) or [Spectrum](https://spectrum.chat/material-ui) chat instead of Github issues. There is a StackOverflow tag called "material-ui" that you can use to tag your questions.
66

77
## Opening an Issue
88

docs/src/pages/components/icons/icons.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ but [https://materialdesignicons.com](https://materialdesignicons.com/) provides
8686

8787
The `Icon` component will display an icon from any icon font that supports ligatures.
8888
As a prerequisite, you must include one, such as the
89-
[Material icon font](http://google.github.io/material-design-icons/#icon-font-for-the-web) in your project, for instance, via Google Web Fonts:
89+
[Material icon font](https://google.github.io/material-design-icons/#icon-font-for-the-web) in your project, for instance, via Google Web Fonts:
9090

9191
```html
9292
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />

docs/src/pages/guides/server-rendering/server-rendering.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default theme;
5656
### The server-side
5757

5858
The following is the outline for what our server-side is going to look like.
59-
We are going to set up an [Express middleware](http://expressjs.com/en/guide/using-middleware.html) using [app.use](http://expressjs.com/en/api.html) to handle all requests that come in to our server.
59+
We are going to set up an [Express middleware](https://expressjs.com/en/guide/using-middleware.html) using [app.use](https://expressjs.com/en/api.html) to handle all requests that come in to our server.
6060
If you're unfamiliar with Express or middleware, just know that our handleRender function will be called every time the server receives a request.
6161

6262
`server.js`

packages/material-ui-icons/builder.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ generates the appropriate `.js` files in the `build` folder, and creates a `pack
2222

2323
`node build.js --help` can be used to display the options available for building.
2424

25-
You can build your own SVG icons as well as collections like [game-icons](http://game-icons.net/)
25+
You can build your own SVG icons as well as collections like [game-icons](https://game-icons.net/)
2626
through command line options.
2727

2828
* `--output-dir` - Directory to output generated components.

packages/material-ui/src/ButtonBase/ButtonBase.test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ describe('<ButtonBase />', () => {
7676
});
7777

7878
it('should automatically change the button to an a element when href is provided', () => {
79-
const wrapper = mount(<ButtonBase href="http://google.com">Hello</ButtonBase>);
79+
const wrapper = mount(<ButtonBase href="https://google.com">Hello</ButtonBase>);
8080
const button = wrapper.find('[role="button"]');
8181
assert.strictEqual(button.type(), 'a');
82-
assert.strictEqual(button.props().href, 'http://google.com');
82+
assert.strictEqual(button.props().href, 'https://google.com');
8383
});
8484

8585
it('should change the button type to a and set role="button"', () => {
@@ -92,13 +92,13 @@ describe('<ButtonBase />', () => {
9292

9393
it('should not change the button to an a element', () => {
9494
const wrapper = mount(
95-
<ButtonBase component="span" href="http://google.com">
95+
<ButtonBase component="span" href="https://google.com">
9696
Hello
9797
</ButtonBase>,
9898
);
9999
const button = wrapper.find('[role="button"]');
100100
assert.strictEqual(button.name(), 'span');
101-
assert.strictEqual(button.props().href, 'http://google.com');
101+
assert.strictEqual(button.props().href, 'https://google.com');
102102
});
103103
});
104104

0 commit comments

Comments
 (0)