Updated server side stuff to work with new yepnope which makes things much simpler.

This commit is contained in:
Shannon
2013-06-19 13:45:41 +10:00
parent 41346a784d
commit 8db763c953
31 changed files with 329 additions and 540 deletions

View File

@@ -1,13 +1,11 @@
require.config("##RequireJsConfig##");
yepnope({
require("##RequireJsInitialize##", function (angular, app, jQuery) {
load: "##JsInitialize##",
//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.
complete: function () {
jQuery(document).ready(function () {
angular.bootstrap(document, ['umbraco']);
});
jQuery(document).ready(function () {
angular.bootstrap(document, ['umbraco']);
});
}
});