1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-29 03:21:09 +12:00

Merge pull request #635 from alexeypetrenko/hyperlink_auditing_link

Fixed broken link
This commit is contained in:
Raymond Hill 2016-10-04 07:51:49 -04:00 committed by GitHub
commit b3941f8a33
2 changed files with 3 additions and 3 deletions

View file

@ -145,7 +145,7 @@
"description": "" "description": ""
}, },
"statsPageHyperlinkAuditingFoiled" : { "statsPageHyperlinkAuditingFoiled" : {
"message": "<a href='http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#hyperlink-auditing'>Hyperlink auditing</a> attempts foiled: {{count}}", "message": "<a href='https://html.spec.whatwg.org/multipage/semantics.html#hyperlink-auditing'>Hyperlink auditing</a> attempts foiled: {{count}}",
"description": "" "description": ""
}, },
"statsPageCookiesRemoved" : { "statsPageCookiesRemoved" : {
@ -380,7 +380,7 @@
"description": "" "description": ""
}, },
"privacyProcessHyperlinkAuditingPrompt" : { "privacyProcessHyperlinkAuditingPrompt" : {
"message": "Block all <a href='http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#hyperlink-auditing'>hyperlink auditing</a> attempts.", "message": "Block all <a href='https://html.spec.whatwg.org/multipage/semantics.html#hyperlink-auditing'>hyperlink auditing</a> attempts.",
"description": "" "description": ""
}, },
"privacyProcessHyperlinkAuditingHelp" : { "privacyProcessHyperlinkAuditingHelp" : {

View file

@ -178,7 +178,7 @@ var onBeforeSendHeadersHandler = function(details) {
// in request log. This way the user is better informed of what went // in request log. This way the user is better informed of what went
// on. // on.
// http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#hyperlink-auditing // https://html.spec.whatwg.org/multipage/semantics.html#hyperlink-auditing
// //
// Target URL = the href of the link // Target URL = the href of the link
// Doc URL = URL of the document containing the target URL // Doc URL = URL of the document containing the target URL