Consistant tab directive paths
This commit is contained in:
committed by
Shannon
parent
cc55af07f1
commit
185e567ef4
@@ -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.
|
||||
@@ -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'
|
||||
};
|
||||
});
|
||||
});
|
||||
@@ -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'
|
||||
};
|
||||
});
|
||||
@@ -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'
|
||||
};
|
||||
});
|
||||
@@ -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
|
||||
};
|
||||
|
||||
@@ -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: "="
|
||||
Reference in New Issue
Block a user