diff options
author | Jonathan <vanillajonathan@users.noreply.github.com> | 2020-04-17 11:46:49 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2020-04-17 11:48:38 +0200 |
commit | 763dd3fefa504a496c2fbdb94c1c04150fba07e6 (patch) | |
tree | e921eece06b2b26dbe1e3311a47c3a6ed5973e20 /build | |
parent | 898784ab849ccb675039bb6e603cfa2555ff5831 (diff) | |
download | jquery-763dd3fefa504a496c2fbdb94c1c04150fba07e6.tar.gz jquery-763dd3fefa504a496c2fbdb94c1c04150fba07e6.zip |
Docs: Use https for hyperlinks in README
Closes gh-4673
(cherry picked from commit 73415da25d964ee31ec1804d55f5af0199a1378e)
Diffstat (limited to 'build')
-rw-r--r-- | build/fixtures/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/fixtures/README.md b/build/fixtures/README.md index e52bde0fd..101c3addb 100644 --- a/build/fixtures/README.md +++ b/build/fixtures/README.md @@ -2,7 +2,7 @@ > jQuery is a fast, small, and feature-rich JavaScript library. -For information on how to get started and how to use jQuery, please see [jQuery's documentation](http://api.jquery.com/). +For information on how to get started and how to use jQuery, please see [jQuery's documentation](https://api.jquery.com/). For source files and issues, please visit the [jQuery repo](https://github.com/jquery/jquery). If upgrading, please see the [blog post for @VERSION](@BLOG_POST_LINK). This includes notable differences from the previous version and a more readable changelog. @@ -21,7 +21,7 @@ Below are some of the most common ways to include jQuery. #### Babel -[Babel](http://babeljs.io/) is a next generation JavaScript compiler. One of the features is the ability to use ES6/ES2015 modules now, even though browsers do not yet support this feature natively. +[Babel](https://babeljs.io/) is a next generation JavaScript compiler. One of the features is the ability to use ES6/ES2015 modules now, even though browsers do not yet support this feature natively. ```js import $ from "jquery"; @@ -37,7 +37,7 @@ var $ = require( "jquery" ); #### AMD (Asynchronous Module Definition) -AMD is a module format built for the browser. For more information, we recommend [require.js' documentation](http://requirejs.org/docs/whyamd.html). +AMD is a module format built for the browser. For more information, we recommend [require.js' documentation](https://requirejs.org/docs/whyamd.html). ```js define( [ "jquery" ], function( $ ) { @@ -47,7 +47,7 @@ define( [ "jquery" ], function( $ ) { ### Node -To include jQuery in [Node](nodejs.org), first install with npm. +To include jQuery in [Node](https://nodejs.org/), first install with npm. ```sh npm install jquery |