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

22 lines
615 B
JavaScript
Raw Normal View History

"##JsNoCache##"
yepnope({
2013-10-10 12:43:59 +02:00
load: [
'lib/jquery/jquery-2.0.3.min.js',
'lib/angular/1.1.5/angular.min.js',
'lib/underscore/underscore.js',
],
complete: function () {
2013-10-10 12:43:59 +02:00
yepnope({
load: "##JsInitialize##",
complete: function () {
2013-10-10 12:43:59 +02:00
//we need to set the legacy UmbClientMgr path
UmbClientMgr.setUmbracoPath('"##UmbracoPath##"');
2013-10-10 12:43:59 +02:00
jQuery(document).ready(function () {
angular.bootstrap(document, ['umbraco']);
});
}
});
}
});