removes container controller

This commit is contained in:
Shannon Deminick
2013-06-02 14:35:26 -10:00
parent 2cf1ee283f
commit 8aba37cb10

View File

@@ -1,20 +0,0 @@
'use strict';
define(['angular'], function(angular) {
/**
* @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);
});