13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
|
/*
|
|||
|
Logic Solution
|
|||
|
WeeeCarbonFootprint
|
|||
|
Template Directive
|
|||
|
*/
|
|||
|
|
|||
|
angular.module('View.Directive')
|
|||
|
.directive('normalTable', function (CONSTANTS) {
|
|||
|
return {
|
|||
|
restrict: 'E',
|
|||
|
templateUrl: CONSTANTS.TB + 'common_search'
|
|||
|
}
|
|||
|
});
|