chore: update links (http=https) (#12911)

This commit is contained in:
Ihor Sychevskyi 2022-12-27 11:19:37 +02:00 committed by GitHub
parent 2e57061766
commit 34c6192f4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View File

@ -10,4 +10,4 @@ Project maintainers have the right and responsibility to remove, edit, or reject
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
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/) 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/)

View File

@ -36,7 +36,7 @@ Hi! I'm really excited that you are interested in contributing to Vue.js. Before
## Development Setup ## Development Setup
You will need [Node.js](http://nodejs.org) **version 12+** and [pnpm](https://pnpm.io/). You will need [Node.js](https://nodejs.org) **version 12+** and [pnpm](https://pnpm.io/).
After cloning the repo, run: After cloning the repo, run:

View File

@ -54,8 +54,8 @@
</section> </section>
<footer class="info"> <footer class="info">
<p>Double-click to edit a todo</p> <p>Double-click to edit a todo</p>
<p>Written by <a href="http://evanyou.me">Evan You</a></p> <p>Written by <a href="https://evanyou.me">Evan You</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p> <p>Part of <a href="https://todomvc.com">TodoMVC</a></p>
</footer> </footer>
<script> <script>

View File

@ -16,7 +16,7 @@ Here are some links you may find helpful:
Get help from other Vue.js users: Get help from other Vue.js users:
* [Vue.js official forum](http://forum.vuejs.org) * [Vue.js official forum](https://forum.vuejs.org)
* [Vue.js on Twitter](https://twitter.com/vuejs) * [Vue.js on Twitter](https://twitter.com/vuejs)
* [Vue.js on Gitter](https://gitter.im/vuejs/vue) * [Vue.js on Gitter](https://gitter.im/vuejs/vue)
@ -24,4 +24,4 @@ _If you have other helpful links to share, or find any of the links above no lon
## Credit ## Credit
This TodoMVC application was created by [Evan You](http://evanyou.me). This TodoMVC application was created by [Evan You](https://evanyou.me).

View File

@ -98,7 +98,7 @@ export function parseHTML(html, options: HTMLParserOptions) {
} }
} }
// http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment // https://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment
if (conditionalComment.test(html)) { if (conditionalComment.test(html)) {
const conditionalEnd = html.indexOf(']>') const conditionalEnd = html.indexOf(']>')

View File

@ -62,7 +62,7 @@ export function isUnknownElement(tag: string): boolean {
} }
const el = document.createElement(tag) const el = document.createElement(tag)
if (tag.indexOf('-') > -1) { if (tag.indexOf('-') > -1) {
// http://stackoverflow.com/a/28210364/1070244 // https://stackoverflow.com/a/28210364/1070244
return (unknownElementCache[tag] = return (unknownElementCache[tag] =
el.constructor === window.HTMLUnknownElement || el.constructor === window.HTMLUnknownElement ||
el.constructor === window.HTMLElement) el.constructor === window.HTMLElement)