Consistant tab directive paths

This commit is contained in:
Per Ploug Krogslund
2015-10-05 15:34:53 +02:00
committed by Shannon
parent cc55af07f1
commit 185e567ef4
12 changed files with 9 additions and 24 deletions

View File

@@ -0,0 +1,3 @@
#Obsolete directives
Folder contains directives we plan to remove in the next major version of umbraco (8.0) these are not recommended to use.

View File

@@ -1,14 +1,14 @@
/**
* @ngdoc directive
* @name umbraco.directives.directive:umbTab
* @name umbraco.directives.directive:umbTab
* @restrict E
**/
angular.module("umbraco.directives")
.directive('umbTab', function ($parse, $timeout) {
return {
restrict: 'E',
replace: true,
replace: true,
transclude: 'true',
templateUrl: 'views/directives/umb-tab.html'
templateUrl: 'views/directives/components/umb-tab.html'
};
});
});

View File

@@ -1,9 +0,0 @@
angular.module("umbraco.directives.html")
.directive('umbTabContainer', function () {
return {
transclude: true,
restrict: 'E',
replace: true,
templateUrl: 'views/components/tabs/umb-tab-container.html'
};
});

View File

@@ -1,9 +0,0 @@
angular.module("umbraco.directives.html")
.directive('umbTabList', function () {
return {
transclude: true,
restrict: 'E',
replace: true,
templateUrl: 'views/components/tabs/umb-tab-list.html'
};
});

View File

@@ -13,7 +13,7 @@
restrict: "E",
replace: true,
transclude: 'true',
templateUrl: "views/directives/umb-tabs-content.html",
templateUrl: "views/directives/components/umb-tabs-content.html",
link: link
};

View File

@@ -40,7 +40,7 @@
var directive = {
restrict: "E",
replace: true,
templateUrl: "views/directives/umb-tabs-nav.html",
templateUrl: "views/components/umb-tabs-nav.html",
scope: {
model: "=",
tabdrop: "="