NLeSC/Cesium-NcWMS

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

Summary

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

  function logarithmicToggleDirective() {
    return {
      restrict: 'E',
      templateUrl: 'scripts/logarithmic/logarithmic.directive.html',
      controller: 'LogarithmicController',
      controllerAs: 'lc'
    };
  }

  angular.module('eWaterCycleApp.logarithmic').directive('logarithmicToggleDirective', logarithmicToggleDirective);
})();