mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-03-17 14:40:24 +00:00
14 lines
No EOL
314 B
JavaScript
14 lines
No EOL
314 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' ] );
|
|
} );
|
|
} ); |