Skip to content

Commit 34c6192

Browse files
authored
chore: update links (http=https) (#12911)
1 parent 2e57061 commit 34c6192

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Project maintainers have the right and responsibility to remove, edit, or reject
1010

1111
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
1212

13-
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
13+
This Code of Conduct is adapted from the [Contributor Covenant](https://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)

.github/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Hi! I'm really excited that you are interested in contributing to Vue.js. Before
3636

3737
## Development Setup
3838

39-
You will need [Node.js](http://nodejs.org) **version 12+** and [pnpm](https://pnpm.io/).
39+
You will need [Node.js](https://nodejs.org) **version 12+** and [pnpm](https://pnpm.io/).
4040

4141
After cloning the repo, run:
4242

examples/classic/todomvc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ <h1>todos</h1>
5454
</section>
5555
<footer class="info">
5656
<p>Double-click to edit a todo</p>
57-
<p>Written by <a href="http://evanyou.me">Evan You</a></p>
58-
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
57+
<p>Written by <a href="https://evanyou.me">Evan You</a></p>
58+
<p>Part of <a href="https://todomvc.com">TodoMVC</a></p>
5959
</footer>
6060

6161
<script>

examples/classic/todomvc/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ Here are some links you may find helpful:
1616

1717
Get help from other Vue.js users:
1818

19-
* [Vue.js official forum](http://forum.vuejs.org)
19+
* [Vue.js official forum](https://forum.vuejs.org)
2020
* [Vue.js on Twitter](https://twitter.com/vuejs)
2121
* [Vue.js on Gitter](https://gitter.im/vuejs/vue)
2222

2323
_If you have other helpful links to share, or find any of the links above no longer work, please [let us know](https://github.com/tastejs/todomvc/issues)._
2424

2525
## Credit
2626

27-
This TodoMVC application was created by [Evan You](http://evanyou.me).
27+
This TodoMVC application was created by [Evan You](https://evanyou.me).

src/compiler/parser/html-parser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export function parseHTML(html, options: HTMLParserOptions) {
9898
}
9999
}
100100

101-
// http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment
101+
// https://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment
102102
if (conditionalComment.test(html)) {
103103
const conditionalEnd = html.indexOf(']>')
104104

src/platforms/web/util/element.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function isUnknownElement(tag: string): boolean {
6262
}
6363
const el = document.createElement(tag)
6464
if (tag.indexOf('-') > -1) {
65-
// http://stackoverflow.com/a/28210364/1070244
65+
// https://stackoverflow.com/a/28210364/1070244
6666
return (unknownElementCache[tag] =
6767
el.constructor === window.HTMLUnknownElement ||
6868
el.constructor === window.HTMLElement)

0 commit comments

Comments
 (0)