mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-08-31 20:11:59 +02:00
.
This commit is contained in:
17
index.html
17
index.html
@@ -5,6 +5,23 @@
|
||||
<meta charset="utf-8">
|
||||
<title>A Primer on Bézier Curves</title>
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
// force https except during local testing (e.g. not on port 80)
|
||||
let loc = window.location.toString();
|
||||
if (loc.indexOf(":8080") === -1 && loc.indexOf("http:") === 0) {
|
||||
window.location = loc.replace("http:","https:");
|
||||
}
|
||||
// if we're still here, load google analytics
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
ga('create', 'UA-69475841-3', 'auto');
|
||||
ga('send', 'pageview');
|
||||
}());
|
||||
</script>
|
||||
|
||||
<!-- optional <base> element to make sure localised content still uses the base location -->
|
||||
|
||||
<!-- mobile optimize -->
|
||||
|
Reference in New Issue
Block a user