2012-04-21 04:56:40 +00:00
|
|
|
require.config( {
|
|
|
|
|
paths : {
|
2014-01-24 03:02:06 +00:00
|
|
|
underscore : "../../../bower/underscore/underscore-min",
|
|
|
|
|
postal : "../../../lib/postal",
|
|
|
|
|
postaldiags : "../../../bower/postal.diagnostics/lib/postal.diagnostics",
|
|
|
|
|
jquery : "../../../bower/jquery/jquery.min"
|
|
|
|
|
},
|
|
|
|
|
shim : {
|
|
|
|
|
underscore: {
|
|
|
|
|
exports: "_"
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-04-21 04:56:40 +00:00
|
|
|
} );
|
2012-02-02 17:34:06 +00:00
|
|
|
|
2013-09-05 02:57:56 +00:00
|
|
|
require( [ "jquery" ], function ( $ ) {
|
2012-04-21 04:56:40 +00:00
|
|
|
$( function () {
|
2013-09-05 02:57:56 +00:00
|
|
|
require( [ "examples" ] );
|
2012-04-21 04:56:40 +00:00
|
|
|
} );
|
|
|
|
|
} );
|