@financial-times/o-header-services
Version:
Responsive page header for sites with minimal or customised branding, including internal products, customer facing tools, and specialist titles.
13 lines (9 loc) • 311 B
JavaScript
import HeaderServices from './src/js/header.js';
const constructAll = () => {
HeaderServices.init();
document.removeEventListener('o.DOMContentLoaded', constructAll);
};
if (typeof document !== 'undefined') {
document.addEventListener('o.DOMContentLoaded', constructAll);
}
export default HeaderServices;