2013-05-23 22:15:52 -10:00
|
|
|
require.config("##RequireJsConfig##");
|
|
|
|
|
|
2013-05-29 20:25:29 -10:00
|
|
|
require("##RequireJsInitialize##", function (angular, app) {
|
2013-05-23 22:15:52 -10:00
|
|
|
|
|
|
|
|
//This function will be called when all the dependencies
|
|
|
|
|
//listed above are loaded. Note that this function could
|
|
|
|
|
//be called before the page is loaded.
|
|
|
|
|
//This callback is optional.
|
|
|
|
|
|
2013-05-29 20:25:29 -10:00
|
|
|
jQuery(document).ready(function () {
|
|
|
|
|
angular.bootstrap(document, ['umbraco']);
|
2013-05-23 22:15:52 -10:00
|
|
|
});
|
|
|
|
|
});
|