Skip to content

Commit d143cba

Browse files
Schweinepriesterljharb
authored andcommittedNov 5, 2021
[Docs] HTTP => HTTPS
1 parent 309b040 commit d143cba

6 files changed

+8
-8
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Ryan Florence built out this awesome runtime-analysis tool called [react-a11y](h
4141

4242
**If you are installing this plugin via `eslint-config-airbnb`, please follow [these instructions](https://github.com/airbnb/javascript/tree/HEAD/packages/eslint-config-airbnb#eslint-config-airbnb-1).**
4343

44-
You'll first need to install [ESLint](http://eslint.org):
44+
You'll first need to install [ESLint](https://eslint.org):
4545

4646
```sh
4747
# npm

‎docs/rules/accessible-emoji.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ This rule takes no arguments.
2323
- [WCAG 1.1.1](https://www.w3.org/WAI/WCAG21/Understanding/non-text-content.html)
2424

2525
### Resources
26-
- [Léonie Watson, Accessible Emoji](http://tink.uk/accessible-emoji/)
26+
- [Léonie Watson, Accessible Emoji](https://tink.uk/accessible-emoji/)

‎docs/rules/anchor-is-valid.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,6 @@ Invalid `href` attribute:
261261

262262
### Resources
263263

264-
- [WebAIM - Introduction to Links and Hypertext](http://webaim.org/techniques/hypertext/)
264+
- [WebAIM - Introduction to Links and Hypertext](https://webaim.org/techniques/hypertext/)
265265
- [Links vs. Buttons in Modern Web Applications](https://marcysutton.com/links-vs-buttons-in-modern-web-applications/)
266266
- [Using ARIA - Notes on ARIA use in HTML](https://www.w3.org/TR/using-aria/#NOTES)

‎docs/rules/no-access-key.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Enforce no accessKey prop on element. Access keys are HTML attributes that allow web developers to assign keyboard shortcuts to elements. Inconsistencies between keyboard shortcuts and keyboard commands used by screenreaders and keyboard-only users create accessibility complications so to avoid complications, access keys should not be used.
44

55
### References
6-
1. [WebAIM](http://webaim.org/techniques/keyboard/accesskey#spec)
6+
1. [WebAIM](https://webaim.org/techniques/keyboard/accesskey#spec)
77

88
## Rule details
99

@@ -23,4 +23,4 @@ This rule takes no arguments.
2323
General best practice (reference resources)
2424

2525
### Resources
26-
- [WebAIM, Keyboard Accessibility: Accesskey](http://webaim.org/techniques/keyboard/accesskey#spec)
26+
- [WebAIM, Keyboard Accessibility: Accesskey](https://webaim.org/techniques/keyboard/accesskey#spec)

‎docs/rules/no-noninteractive-element-interactions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Headers often double as expand/collapse controls for the content they headline.
5757

5858
### Case: This element is a table cell
5959

60-
Table cells (and tables in general) are meant to contain data. ARIA provides us with a construct called a [Grid](http://w3c.github.io/aria-practices/#grid) that is essentially a 2 dimensional logical container for content and interactive elements.
60+
Table cells (and tables in general) are meant to contain data. ARIA provides us with a construct called a [Grid](https://w3c.github.io/aria-practices/#grid) that is essentially a 2 dimensional logical container for content and interactive elements.
6161

6262
You have two options in this case.
6363

‎docs/rules/no-onchange.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ This rule takes no arguments.
2828
- [WCAG 3.2.2](https://www.w3.org/WAI/WCAG21/Understanding/on-input)
2929

3030
### Resources
31-
- [onChange Event Accessibility Issues](http://cita.disability.uiuc.edu/html-best-practices/auto/onchange.php)
32-
- [onChange Select Menu](http://www.themaninblue.com/writing/perspective/2004/10/19/)
31+
- [onChange Event Accessibility Issues](https://web.archive.org/web/20191207202425/http://cita.disability.uiuc.edu/html-best-practices/auto/onchange.php)
32+
- [onChange Select Menu](https://www.themaninblue.com/writing/perspective/2004/10/19/)

0 commit comments

Comments
 (0)
Please sign in to comment.