24 lines
689 B
CoffeeScript
24 lines
689 B
CoffeeScript
DropdownProjectListDirective = (currentUserService, projectsService) ->
|
|
link = (scope, el, attrs, ctrl) ->
|
|
scope.vm = {}
|
|
|
|
taiga.defineImmutableProperty(scope.vm, "projects", () -> currentUserService.projects.get("recents"))
|
|
|
|
scope.vm.newProject = ->
|
|
projectsService.newProject()
|
|
|
|
directive = {
|
|
templateUrl: "navigation-bar/dropdown-project-list/dropdown-project-list.html"
|
|
scope: {}
|
|
link: link
|
|
}
|
|
|
|
return directive
|
|
|
|
DropdownProjectListDirective.$inject = [
|
|
"tgCurrentUserService",
|
|
"tgProjectsService"
|
|
]
|
|
|
|
angular.module("taigaNavigationBar").directive("tgDropdownProjectList", DropdownProjectListDirective)
|