mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-28 18:20:42 +00:00
32 lines
576 B
JavaScript
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() {
|
|
}
|
|
|
|
})();
|