super-productivity/app-src/scripts/help-section/help-section-d.js
Johannes Millan 5d6ae7bac6 fix lint
2017-02-14 20:22:40 +01:00

32 lines
576 B
JavaScript

/**
* @ngdoc directive
* @name superProductivity.directive:helpSection
* @description
* # helpSection
*/
(function () {
'use strict';
angular
.module('superProductivity')
.directive('helpSection', helpSection);
/* @ngInject */
function helpSection() {
return {
templateUrl: 'scripts/help-section/help-section-d.html',
bindToController: true,
controller: HelpSectionCtrl,
controllerAs: 'vm',
transclude: true,
restrict: 'E',
scope: {}
};
}
/* @ngInject */
function HelpSectionCtrl() {
}
})();