fox-send/app/templates/header/index.js

15 lines
390 B
JavaScript
Raw Normal View History

const html = require('choo/html');
2018-02-16 20:56:53 +00:00
2018-08-03 19:24:41 +00:00
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;
2018-02-16 20:56:53 +00:00
};