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