Files
Umbraco-CMS/src/Umbraco.Web/UI/JavaScript/Main.js

13 lines
414 B
JavaScript
Raw Normal View History

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']);
});
});