NLeSC/ahn-pointcloud-viewer

View on GitHub
app/scripts/extract/extraction.directive.js

Summary

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

  function extractionPanel() {
    return {
      restrict: 'E',
      templateUrl: 'scripts/extract/extraction.directive.html',
      controller: 'ExtractionController',
      controllerAs: 'ec'
    };
  }

  angular.module('pattyApp.extract')
    .directive('extractionPanel', extractionPanel);
})();