Merge pull request #42 from andmironov/gh-pages

moved ip script to bottom, added extra padding to terms popup on mobile
This commit is contained in:
carlbennetts 2017-06-20 17:23:45 +08:00 committed by GitHub
commit 0ecf65bdb4
2 changed files with 13 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -20,19 +20,8 @@
<link rel="mask-icon" href="img/new-site/logo-mask.svg" color="4360DF">
<!-- favicon.ico in the root directory -->
<link rel="stylesheet" href="css/main.css?v=542acb0">
<link rel="stylesheet" href="css/main.css?v=de25c57">
<meta property="og:title" content="Status, a Mobile Ethereum OS" />
<script src="//js.maxmind.com/js/apis/geoip2/v2.1/geoip2.js" type="text/javascript"></script>
<script type="application/javascript">
geoip2.country(function (resp) { // on success
if (resp['country']['iso_code'] == "US") {
window.location = "https://contribute.status.im/us-ip-detected.html";
}
}, function () { // on error
// pass
}, {});
</script>
</head>
<body>
@ -705,6 +694,17 @@
} catch (e) {}
</script>
<!-- /Google Analytics -->
<script src="//js.maxmind.com/js/apis/geoip2/v2.1/geoip2.js" type="text/javascript"></script>
<script type="application/javascript">
geoip2.country(function (resp) { // on success
if (resp['country']['iso_code'] == "US") {
window.location = "https://contribute.status.im/us-ip-detected.html";
}
}, function () { // on error
// pass
}, {});
</script>
</body>
</html>