diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 8569790f..3eae9e07 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -7,7 +7,9 @@ {{ $o := index (split $s "/") 1 }} + {{ partial "svg.html" . }} diff --git a/static/pkg/hotkeys-js/dist/terminal.js b/static/pkg/hotkeys-js/dist/terminal.js index 1d5a9c49..c73097af 100644 --- a/static/pkg/hotkeys-js/dist/terminal.js +++ b/static/pkg/hotkeys-js/dist/terminal.js @@ -1,16 +1,16 @@ hotkeys('ctrl+enter', function() { var ele = document.getElementById('aiterm'); var svg = document.getElementById('aisvg'); - var par = document.getElementById('particles-js'); + //var par = document.getElementById('particles-js'); if (ele.style.display == 'none') { ele.style.display = 'block'; svg.style.display = 'none'; - par.style.display = 'none'; + //par.style.display = 'none'; ele.focus(); } else { ele.style.display = 'none'; svg.style.display = 'block'; - par.style.display = 'block'; + //par.style.display = 'block'; svg.focus(); } });