blob: 3f7588591372d8eb3678ba6ff782e5d9207c95a5 (
plain)
1
2
3
4
5
6
7
|
// Fetches the header contents if it exists
(function() {
const header = document.getElementById('header');
if (header) {
Frost.handleHeader(header.outerHTML);
}
}).call(undefined);
|