taiga-front/app/modules/profile/profile-tabs/profile-tabs.controller.coffee

15 lines
303 B
CoffeeScript

class ProfileTabsController
constructor: () ->
@tabs = []
addTab: (tab) ->
@tabs.push(tab)
toggleTab: (tab) ->
_.map @tabs, (tab) -> tab.active = false
tab.active = true
angular.module("taigaProfile")
.controller("ProfileTabs", ProfileTabsController)