style: auto-fix linting issues
This commit is contained in:
parent
911a2016d0
commit
d4733020b6
2 changed files with 10 additions and 7 deletions
|
|
@ -33,7 +33,6 @@
|
|||
rel="stylesheet"
|
||||
/>
|
||||
<link rel="stylesheet" href="/styles.css" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
|
|||
16
js/app.js
16
js/app.js
|
|
@ -80,12 +80,16 @@ if (typeof window !== 'undefined') {
|
|||
plausibleScript.src = 'https://plausible.canine.tools/js/pa-dCMvQpiD1-AJmi8o3xviO.js';
|
||||
document.head.appendChild(plausibleScript);
|
||||
|
||||
window.plausible = window.plausible || function () {
|
||||
(window.plausible.q = window.plausible.q || []).push(arguments);
|
||||
};
|
||||
window.plausible.init = window.plausible.init || function (i) {
|
||||
window.plausible.o = i || {};
|
||||
};
|
||||
window.plausible =
|
||||
window.plausible ||
|
||||
function () {
|
||||
(window.plausible.q = window.plausible.q || []).push(arguments);
|
||||
};
|
||||
window.plausible.init =
|
||||
window.plausible.init ||
|
||||
function (i) {
|
||||
window.plausible.o = i || {};
|
||||
};
|
||||
window.plausible.init();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue