NLeSC/PattyVis

View on GitHub
app/scripts/pointcloud/pointcloud-stats.directive.js

Summary

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

  function pattyPointcloudStats() {
    return {
      restrict: 'E',
      templateUrl: 'scripts/pointcloud/pointcloud-stats.directive.html',
      controller: 'PointcloudStatsController',
      controllerAs: 'pcs'
    };
  }

  angular.module('pattyApp.pointcloud')
    .directive('pattyPointcloudStats', pattyPointcloudStats);
})();