mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-03-17 06:30:23 +00:00
19 lines
No EOL
438 B
JavaScript
19 lines
No EOL
438 B
JavaScript
require.config( {
|
|
paths : {
|
|
underscore : "../../../bower/underscore/underscore-min",
|
|
postal : "../../../lib/postal",
|
|
postaldiags : "../../../bower/postal.diagnostics/lib/postal.diagnostics",
|
|
jquery : "../../../bower/jquery/jquery.min"
|
|
},
|
|
shim : {
|
|
underscore: {
|
|
exports: "_"
|
|
}
|
|
}
|
|
} );
|
|
|
|
require( [ "jquery" ], function ( $ ) {
|
|
$( function () {
|
|
require( [ "examples" ] );
|
|
} );
|
|
} ); |