-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move JavaScript snippet to separate file (#83)
This allows to use a more restrictive CSP (especially without unsafe-inline script). See https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
- Loading branch information
1 parent
670c25c
commit df6f003
Showing
2 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const statifyReq = new XMLHttpRequest(); | ||
statifyReq.open( | ||
'GET', | ||
document.getElementById('statify-js-snippet').getAttribute('data-home-url') | ||
+ '?statify_referrer=' + encodeURIComponent(document.referrer) | ||
+ '&statify_target=' + encodeURIComponent(location.pathname + location.search) | ||
); | ||
statifyReq.send( null ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters