NLeSC/PattyVis

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

Summary

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

  function pattyHelp() {
    return {
      restrict: 'E',
      templateUrl: 'scripts/help/help.directive.html',
      controller: 'HelpController',
      controllerAs: 'hc'
    };
  }

  angular.module('pattyApp.help')
    .directive('pattyHelp', pattyHelp);
})();