mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-04-05 07:31:08 +00:00
14 lines
No EOL
296 B
JavaScript
14 lines
No EOL
296 B
JavaScript
require.config({
|
|
paths: {
|
|
underscore: 'libs/underscore/underscore-min',
|
|
postal: 'libs/postal/postal',
|
|
postaldiags:'libs/postal/postal.diagnostics',
|
|
jquery: 'libs/jquery/jquery-min'
|
|
}
|
|
});
|
|
|
|
require( [ 'jquery' ], function( $ ){
|
|
$(function(){
|
|
require( [ 'examples' ] );
|
|
});
|
|
}); |