NLeSC/ahn-pointcloud-viewer

View on GitHub
app/scripts/biglegend/biglegend.directive.js

Summary

Maintainability
A
1 hr
Test Coverage
(function() {
  'use strict';

  function bigLegendDirective() {
    return {
      restrict: 'E',
      templateUrl: 'scripts/biglegend/biglegend.directive.html',
      controller: 'BigLegendController',
      controllerAs: 'blc'
    };
  }

  angular.module('pattyApp.biglegend').directive('bigLegendDirective', bigLegendDirective);
})();