New release

This commit is contained in:
boryslevytskyi
2017-06-04 21:06:19 +03:00
parent ab9f631d50
commit 0303dbc228
4 changed files with 15 additions and 7 deletions

View File

@@ -1,7 +1,15 @@
(function() {
if(window.location.host != 'bitwisecmd.com' || window.location.hash.indexOf('-notrack') > -1) {
console.log("Analytics not tracked")
var disableAnalytics = localStorage.getItem('trackAnalytics') === 'false' || window.location.hash.indexOf('-notrack') > -1
if(disableAnalytics) {
localStorage.setItem("trackAnalytics", "false");
console.log('Analytics tracking disabled.');
return;
}
if(window.location.host != 'bitwisecmd.com') {
console.log("Analytics not tracked. Non-prod host")
return;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -21,7 +21,7 @@ code { font-size: 1.2em; font-weight: bold; }
.hashLink { text-decoration: none; margin-left: 5px; visibility: hidden }
.hashLink:hover { text-decoration: underline; margin-left: 5px; }
.input:hover .hashLink { visibility: visible }
.result:hover .hashLink { visibility: visible }
.expression .label { font-weight: bold; padding-right: 5px; text-align: right; }
.expression .bin { letter-spacing: 3px; }