Files
Umbraco-CMS/src/Umbraco.Web/UI/JavaScript/Main.js
2013-05-26 19:54:50 -10:00

13 lines
414 B
JavaScript

require.config("##RequireJsConfig##");
require("##RequireJsInitialize##", function (angular, myApp) {
//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.
jQuery(document).ready(function() {
angular.bootstrap(document, ['myApp']);
});
});