Removed loggin

This commit is contained in:
Knut Sveidqvist 2019-11-27 20:15:21 +01:00 committed by Nacho
parent 2cf8c4e37a
commit 50ea9bda89
2 changed files with 31 additions and 1 deletions

View File

@ -0,0 +1,31 @@
<html>
<head>
<link
href="https://fonts.googleapis.com/css?family=Montserrat&display=swap"
rel="stylesheet"
/>
</head>
<body>
<h1>info below</h1>
<div class="mermaid">graph TB
a --> b
a --> c
a --> d
</div>
<script src="./mermaid.js"></script>
<script>
mermaid.initialize({
theme: 'forest',
// arrowMarkerAbsolute: true,
// themeCSS: '.node rect { fill: red; }',
logLevel: 3,
flowchart: { curve: 'linear' },
gantt: { axisFormat: '%m/%d/%Y' },
sequence: { actorMargin: 50 },
// sequenceDiagram: { actorMargin: 300 } // deprecated
});
</script>
</script>
</body>
</html>

View File

@ -59,7 +59,6 @@
<script>
window.onhashchange = function(a) {
//code
console.log('send', a);
if(location) {
ga('send', 'pageview', location.hash);
}