blob: c7f63e91b1fbce9736f9aedcbfa540568b012cad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
function load_css(url) {
let link = document.createElement("link");
link.rel = "stylesheet";
link.type = "text/css";
link.href = url;
let head = document.getElementsByTagName("head")[0];
head.appendChild(link);
}
addEventListener("load", function () {
if (document.querySelector(".highlight .chroma")) {
load_css("/css/syntax.css");
}
var _pixel = new Image(1, 1);
_pixel.src =
"https://test.oscarnajera.com/visitorcounter.gif?u=" +
encodeURIComponent(window.location.pathname) +
(document.referrer ? "&r=" + encodeURIComponent(document.referrer) : "");
});
|