mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-31 03:30:50 +00:00
33 lines
520 B
JavaScript
33 lines
520 B
JavaScript
/**
|
|
* @ngdoc directive
|
|
* @name superProductivity.directive:hints
|
|
* @description
|
|
* # hints
|
|
*/
|
|
|
|
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('superProductivity')
|
|
.directive('hints', hints);
|
|
|
|
/* @ngInject */
|
|
function hints() {
|
|
return {
|
|
templateUrl: 'scripts/hints/hints-d.html',
|
|
bindToController: true,
|
|
controller: HintsCtrl,
|
|
controllerAs: 'vm',
|
|
restrict: 'E',
|
|
scope: true
|
|
};
|
|
|
|
}
|
|
|
|
/* @ngInject */
|
|
function HintsCtrl() {
|
|
//let vm = this;
|
|
}
|
|
|
|
})();
|