link[href] is already an absolute URL

a[href] and link[href] will both normalize to an absolute URL so there is no need to create an extra a element here.
This commit is contained in:
Daniel Aleksandersen 2018-07-23 05:53:13 +02:00 committed by GitHub
parent 6a27475faf
commit c6ec64a267
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,11 +73,7 @@ function trackPageview() {
// parse canonical, if page has one
let canonical = document.querySelector('link[rel="canonical"][href]');
if(canonical) {
let a = document.createElement('a');
a.href = canonical.href;
// use parsed canonical as location object
req = a;
req = canonical.href;
}
// get path and pathname from location or canonical