( A Javascript Library For Require And Preload - Code By Joenix )
roo.config = {
base: 'https://localhost/'
};
roo.use( ['jQuery.js', 'action.js'], function( $, act ){
console.log( $, act.plus( 45, 54 ) );
});
or
roo.use( ['jQuery.js', 'action.js'], ['$', act], function(){
console.log( $, act.plus( 45, 54 ) );
});
in action.js
define(function($){
console.log($);
return {
plus: function( a, b ){
return a + b;
}
}
});
roo.preload( ['picture.jpg', 'stylesheet.css', 'database.json'], function( item, index ){
console.log( index );
});
Code and documentation copyright 2015-2018 Joenix.com. Code released under the MIT license.