13 lines
362 B
CoffeeScript
13 lines
362 B
CoffeeScript
class PageController extends taiga.Controller
|
|
@.$inject = [
|
|
"$appTitle",
|
|
"$translate",
|
|
"pageParams"
|
|
]
|
|
|
|
constructor: (@appTitle, @translate, @pageParams) ->
|
|
if @pageParams.title
|
|
@translate(@pageParams.title).then (text) => @appTitle.set(text)
|
|
|
|
angular.module("taigaPage").controller("Page", PageController)
|