mirror of
https://github.com/vuejs/vue.git
synced 2024-11-21 20:28:54 +00:00
chore: update links (http=https) (#12911)
This commit is contained in:
parent
2e57061766
commit
34c6192f4a
2
.github/CODE_OF_CONDUCT.md
vendored
2
.github/CODE_OF_CONDUCT.md
vendored
@ -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/)
|
||||||
|
2
.github/CONTRIBUTING.md
vendored
2
.github/CONTRIBUTING.md
vendored
@ -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:
|
||||||
|
|
||||||
|
@ -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>
|
||||||
|
@ -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).
|
||||||
|
@ -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(']>')
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user