NLeSC/Cesium-NcWMS

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

Summary

Maintainability
A
50 mins
Test Coverage
(function() {
  'use strict';

  function projectLogoBoxDirective() {
    return {
      restrict: 'E',
      templateUrl: 'scripts/projectlogo/projectlogo.directive.html'
    };
  }

  angular.module('eWaterCycleApp.projectlogo').directive('projectLogoBoxDirective', projectLogoBoxDirective);
})();