From 8aba37cb103ebc757b6e876af5101c2566f81c75 Mon Sep 17 00:00:00 2001 From: Shannon Deminick Date: Sun, 2 Jun 2013 14:35:26 -1000 Subject: [PATCH] removes container controller --- .../views/container.controller.js | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/Umbraco.Web.UI.Client/views/container.controller.js diff --git a/src/Umbraco.Web.UI.Client/views/container.controller.js b/src/Umbraco.Web.UI.Client/views/container.controller.js deleted file mode 100644 index 7d3135ae04..0000000000 --- a/src/Umbraco.Web.UI.Client/views/container.controller.js +++ /dev/null @@ -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); - -}); \ No newline at end of file