fix angular docs build

This commit is contained in:
Mads Rasmussen
2016-06-23 15:44:55 +02:00
parent 7411be99a8
commit 8a3c5c226c

View File

@@ -3,9 +3,9 @@ angular.module("umbraco.directives")
/**
* @ngdoc directive
* @name umbraco.directives.directive:localize
* @restrict E
* @restrict EA
* @function
* @description Localize element directive
* @description Localize directive
**/
.directive('localize', function ($log, localizationService) {
return {
@@ -24,13 +24,6 @@ angular.module("umbraco.directives")
};
})
/**
* @ngdoc directive
* @name umbraco.directives.directive:localize
* @restrict A
* @function
* @description Localize attribute directive
**/
.directive('localize', function ($log, localizationService) {
return {
restrict: 'A',
@@ -54,4 +47,4 @@ angular.module("umbraco.directives")
}
};
});
});