NLeSC/PattyVis

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

Summary

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

  function HelpController() {
    this.showHelp = false;
  }

  angular.module('pattyApp.help')
    .controller('HelpController', HelpController);
})();