diff --git a/src/Umbraco.Web.UI.Client/gruntFile.js b/src/Umbraco.Web.UI.Client/gruntFile.js index 0a48b63e3f..406314e921 100644 --- a/src/Umbraco.Web.UI.Client/gruntFile.js +++ b/src/Umbraco.Web.UI.Client/gruntFile.js @@ -112,9 +112,8 @@ module.exports = function (grunt) { mocks: { files: [{ dest: '<%= distdir %>/js', src : '*.js', expand: true, cwd: 'src/common/mocks/' }] }, - vs: { - files: [{ dest: '<%= vsdir %>/js', src : '**', expand: true, cwd: '<%= distdir %>/js/' }] + files: [{ dest: '<%= vsdir %>/', src : '**', expand: true, cwd: '<%= distdir %>/' }] }, packages: { files: [{ dest: '<%= vsdir %>/../App_Plugins', src : '**', expand: true, cwd: 'src/packages/' }] diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/umbleftcolumn.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/umbnavigation.directive.js similarity index 60% rename from src/Umbraco.Web.UI.Client/src/common/directives/umbleftcolumn.directive.js rename to src/Umbraco.Web.UI.Client/src/common/directives/umbnavigation.directive.js index 0c74915fa8..e0c0e34ac2 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/umbleftcolumn.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/umbnavigation.directive.js @@ -1,14 +1,14 @@ /** * @ngdoc directive -* @name umbraco.directive:leftColumn +* @name umbraco.directive:umbNavigation * @restrict E **/ function leftColumnDirective() { return { restrict: "E", // restrict to an element replace: true, // replace the html element with the template - templateUrl: 'views/directives/umb-leftcolumn.html' + templateUrl: 'views/directives/umb-navigation.html' }; } -angular.module('umbraco.directives').directive("umbLeftColumn", leftColumnDirective); +angular.module('umbraco.directives').directive("umbNavigation", leftColumnDirective); diff --git a/src/Umbraco.Web.UI.Client/src/index.html b/src/Umbraco.Web.UI.Client/src/index.html index bac166cb41..f8f4f79785 100644 --- a/src/Umbraco.Web.UI.Client/src/index.html +++ b/src/Umbraco.Web.UI.Client/src/index.html @@ -12,7 +12,7 @@