taiga-front/app/modules/profile/profile-hints/profile-hints.directive.coffee

14 lines
316 B
CoffeeScript

ProfileHints = ($translate) ->
return {
scope: {},
controller: "ProfileHints",
controllerAs: "vm",
templateUrl: "profile/profile-hints/profile-hints.html"
}
ProfileHints.$inject = [
"$translate"
]
angular.module("taigaProfile").directive("tgProfileHints", ProfileHints)