@financial-times/o-table
Version:
Provides styling and behvaiour for tables across FT products.
13 lines (9 loc) • 292 B
JavaScript
import oTable from './src/js/oTable.js';
const constructAll = function() {
oTable.init();
document.removeEventListener('o.DOMContentLoaded', constructAll);
};
if (typeof document !== 'undefined') {
document.addEventListener('o.DOMContentLoaded', constructAll);
}
export default oTable;