14 lines
357 B
CoffeeScript
14 lines
357 B
CoffeeScript
DropdownUserDirective = () ->
|
|
directive = {
|
|
templateUrl: "navigation-bar/dropdown-user/dropdown-user.html"
|
|
controller: "ProjectsController"
|
|
scope: {}
|
|
bindToController: true
|
|
controllerAs: "vm"
|
|
}
|
|
|
|
return directive
|
|
|
|
angular.module("taigaNavigationBar").directive("tgDropdownUser",
|
|
DropdownUserDirective)
|