mirror of
https://github.com/owenlejeune/AirHockey.git
synced 2025-12-28 02:11:19 -05:00
18 lines
310 B
JavaScript
18 lines
310 B
JavaScript
/*global requirejs: false*/
|
|
|
|
requirejs.config({
|
|
baseUrl: '../bower_components'
|
|
// OR
|
|
// paths: {
|
|
// eventie: '../bower_components/eventie'
|
|
// }
|
|
});
|
|
|
|
requirejs( [ '../doc-ready' ], function( docReady ) {
|
|
|
|
docReady( function() {
|
|
document.body.innerHTML += '\<p>okay ready now\</p>';
|
|
});
|
|
|
|
});
|