15 lines
390 B
JavaScript
15 lines
390 B
JavaScript
const html = require('choo/html');
|
|
|
|
module.exports = function() {
|
|
const header = html`
|
|
<header class="header">
|
|
</header>`;
|
|
// HACK
|
|
// We only want to render this once because we
|
|
// toggle the targets of the links with utils/openLinksInNewTab
|
|
header.isSameNode = function(target) {
|
|
return target && target.nodeName && target.nodeName === 'HEADER';
|
|
};
|
|
return header;
|
|
};
|