15 lines
416 B
CoffeeScript
15 lines
416 B
CoffeeScript
ProfileProjectsDirective = () ->
|
|
link = (scope, elm, attr, ctrl) ->
|
|
ctrl.loadProjects()
|
|
|
|
return {
|
|
templateUrl: "profile/profile-projects/profile-projects.html",
|
|
scope: {},
|
|
link: link
|
|
bindToController: true,
|
|
controllerAs: "vm",
|
|
controller: "ProfileProjects"
|
|
}
|
|
|
|
angular.module("taigaProfile").directive("tgProfileProjects", ProfileProjectsDirective)
|