@financial-times/o-subs-card
Version:
A card for showing different subscription packages offered by the Financial Times
13 lines (9 loc) • 324 B
JavaScript
import {SubsCard} from './src/js/subsCard.js';
const constructAll = function() {
SubsCard.init();
document.removeEventListener('o.DOMContentLoaded', constructAll);
};
if (typeof document !== 'undefined') {
document.addEventListener('o.DOMContentLoaded', constructAll);
}
export {SubsCard} from './src/js/subsCard.js';