outlayer
Version:
the brains and guts of a layout library
14 lines (12 loc) • 377 B
JavaScript
requirejs.config({
baseUrl: '../../bower_components'
// OR
// paths: {
// 'ev-emitter': 'bower_components/ev-emitter',
// 'get-size': 'bower_components/get-size',
// 'matches-selector': 'bower_components/matches-selector'
// }
});
requirejs( [ '../sandbox/cells-by-row' ], function( CellsByRow ) {
new CellsByRow( document.querySelector('#basic') );
});