From 26e801b7a2f31492967ddcfe88bd4ec0afad8c3a Mon Sep 17 00:00:00 2001 From: Gem Barrett Date: Thu, 16 Jun 2016 14:04:01 -0400 Subject: [PATCH 1/2] Fixed broken link to SRI explanation Link and link text were in wrong order and brackets --- pages/download.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/download.md b/pages/download.md index 578d753..96449e3 100644 --- a/pages/download.md +++ b/pages/download.md @@ -81,7 +81,7 @@ if the visitor to your webpage has already downloaded a copy of jQuery from the ### jQuery's CDN provided by [MaxCDN](https://www.maxcdn.com) -The jQuery CDN supports [https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity](Subresource Integrity) (SRI) which allows the browser to verify that the files being delivered have not been modified. This [https://www.w3.org/TR/SRI/](specification) is currently being implemented by browsers. Adding the new integrity attribute will ensure your application gains this security improvement as browsers support it. +The jQuery CDN supports [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) (SRI) which allows the browser to verify that the files being delivered have not been modified. This [https://www.w3.org/TR/SRI/](specification) is currently being implemented by browsers. Adding the new integrity attribute will ensure your application gains this security improvement as browsers support it. To use the jQuery CDN, just reference the file in the script tag directly from the jQuery CDN domain. You can get the complete script tag, including Subresource Integrity attribute, by visiting https://code.jquery.com and clicking on the version of the file that you want to use. Copy and paste that tag into your HTML file. From beca94aab4ddc8cd0dee8bb922b9803848c091de Mon Sep 17 00:00:00 2001 From: Gem Barrett Date: Thu, 16 Jun 2016 14:07:23 -0400 Subject: [PATCH 2/2] Fixed specification link formatting Wrong brackets used on W3 spec link --- pages/download.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/download.md b/pages/download.md index 96449e3..3a71377 100644 --- a/pages/download.md +++ b/pages/download.md @@ -81,7 +81,7 @@ if the visitor to your webpage has already downloaded a copy of jQuery from the ### jQuery's CDN provided by [MaxCDN](https://www.maxcdn.com) -The jQuery CDN supports [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) (SRI) which allows the browser to verify that the files being delivered have not been modified. This [https://www.w3.org/TR/SRI/](specification) is currently being implemented by browsers. Adding the new integrity attribute will ensure your application gains this security improvement as browsers support it. +The jQuery CDN supports [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) (SRI) which allows the browser to verify that the files being delivered have not been modified. This [specification](https://www.w3.org/TR/SRI/) is currently being implemented by browsers. Adding the new integrity attribute will ensure your application gains this security improvement as browsers support it. To use the jQuery CDN, just reference the file in the script tag directly from the jQuery CDN domain. You can get the complete script tag, including Subresource Integrity attribute, by visiting https://code.jquery.com and clicking on the version of the file that you want to use. Copy and paste that tag into your HTML file.