Created
November 24, 2015 01:53
-
-
Save nfriend21/7d0452d2e3100d3961d9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="apple-touch-icon-57x57.png" /> | |
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114.png" /> | |
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72.png" /> | |
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144x144.png" /> | |
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="apple-touch-icon-60x60.png" /> | |
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="apple-touch-icon-120x120.png" /> | |
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="apple-touch-icon-76x76.png" /> | |
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="apple-touch-icon-152x152.png" /> | |
<link rel="icon" type="image/png" href="favicon-196x196.png" sizes="196x196" /> | |
<link rel="icon" type="image/png" href="favicon-96x96.png" sizes="96x96" /> | |
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" /> | |
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" /> | |
<link rel="icon" type="image/png" href="favicon-128.png" sizes="128x128" /> | |
<meta name="application-name" content=" "/> | |
<meta name="msapplication-TileColor" content="#FFFFFF" /> | |
<meta name="msapplication-TileImage" content="mstile-144x144.png" /> | |
<meta name="msapplication-square70x70logo" content="mstile-70x70.png" /> | |
<meta name="msapplication-square150x150logo" content="mstile-150x150.png" /> | |
<meta name="msapplication-wide310x150logo" content="mstile-310x150.png" /> | |
<meta name="msapplication-square310x310logo" content="mstile-310x310.png" /> | |
<script src="//use.typekit.net/uit6wsq.js"></script> | |
<script>try{Typekit.load();}catch(e){}</script> | |
<script> | |
function getURLParameters(url) { | |
var result = {}; | |
var searchIndex = url.indexOf("?"); | |
if (searchIndex == -1 ) return result; | |
var sPageURL = url.substring(searchIndex +1); | |
var sURLVariables = sPageURL.split('&'); | |
for (var i = 0; i < sURLVariables.length; i++) | |
{ | |
var sParameterName = sURLVariables[i].split('='); | |
result[sParameterName[0]] = sParameterName[1]; | |
} | |
return result; | |
} | |
function createCookieForNewVisitor() { | |
if ( Cookies.get('newVisitor') === undefined ) { | |
var params = getURLParameters(window.location.href); | |
Cookies.set("newVisitor", params, { | |
expires : 60, // expires in n days | |
}); | |
} | |
} | |
window.onload = function() { | |
createCookieForNewVisitor(); | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment