@financial-times/o-overlay
Version:
Configurable custom overlay box that can be used to show overlay windows. The overlays can also be switched to display differently on small screens
14 lines (9 loc) • 297 B
JavaScript
import Overlay from './src/js/overlay.js';
const constructAll = function() {
Overlay.init();
document.removeEventListener('o.DOMContentLoaded', constructAll);
};
if (typeof document !== 'undefined') {
document.addEventListener('o.DOMContentLoaded', constructAll);
}
export default Overlay;