added new tests for model mapping and serialization of the content display models. Started integrating trees. Committed the compiled
angular controllers, directives, services, resources since I'll be modifying them to work with the real data services. Then we'll have to merge back to the belle repo with the changes.
This commit is contained in:
@@ -2,8 +2,19 @@
|
||||
|
||||
define(['angular'], function(angular) {
|
||||
|
||||
//Handles the initial loading of the index.html main app from our razor page
|
||||
angular.module('umbraco').controller("ContainerController", function($scope) {
|
||||
/**
|
||||
* @ngdoc controller
|
||||
* @name umbraco.ContainerController
|
||||
* @function
|
||||
*
|
||||
* @description
|
||||
* The container controller which is used to load in the html templates so html devs need not worry about the razor markup
|
||||
*/
|
||||
var containerController = function ($scope) {
|
||||
$scope.applicationView = "views/index.html";
|
||||
});
|
||||
};
|
||||
|
||||
/** Handles the initial loading of the index.html main app from our razor page */
|
||||
angular.module('umbraco').controller("ContainerController", containerController);
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user