NLeSC/ahn-pointcloud-viewer

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

Summary

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

  function earthcontrolsDirective() {
    return {
      restrict: 'E',
      templateUrl: 'scripts/earthcontrols/earthcontrols.directive.html',
      controller: 'EarthcontrolsController',
      controllerAs: 'earthcontrols'
    };
  }

  angular.module('pattyApp.earthcontrols')
    .directive('earthcontrolsDirective', earthcontrolsDirective);
})();