mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 12:01:52 +02:00
14 lines
377 B
JavaScript
14 lines
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') );
|
||
|
});
|