terranodo/angular-search

View on GitHub
app/components/buttonPanel/buttonPanelDirective.js

Summary

Maintainability
A
0 mins
Test Coverage
/*eslint angular/controller-as: 0*/
/*eslint angular/di: [2,"array"]*/
/*eslint max-len: [2,90]*/
/**
 * Export Directive
 */
(function() {
    angular
    .module('search_buttonPanel_component', [])
    .directive('buttonPanel', [function() {
        return {
            link: link,
            restrict: 'EA',
            templateUrl: 'components/buttonPanel/buttonPanel.tpl.html',
            scope: {}
        };

        function link(scope) {

        }
    }]);
})();