mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-03-16 22:20:23 +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" ] );
|
|
} );
|
|
} ); |