Added change of page title.
This commit is contained in:
parent
46f18b7ecf
commit
96d6d94778
6 changed files with 6 additions and 0 deletions
|
@ -12,6 +12,7 @@ class Index extends App.Controller
|
||||||
constructor: ->
|
constructor: ->
|
||||||
super
|
super
|
||||||
return if !@authenticate()
|
return if !@authenticate()
|
||||||
|
@title 'Avatar', true
|
||||||
@avatars = []
|
@avatars = []
|
||||||
@loadAvatarList()
|
@loadAvatarList()
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ class CalendarSubscriptions extends App.Controller
|
||||||
constructor: ->
|
constructor: ->
|
||||||
super
|
super
|
||||||
return if !@authenticate()
|
return if !@authenticate()
|
||||||
|
@title 'Calendar', true
|
||||||
|
|
||||||
@translationTable =
|
@translationTable =
|
||||||
new_open: App.i18n.translatePlain('new & open')
|
new_open: App.i18n.translatePlain('new & open')
|
||||||
|
|
|
@ -5,6 +5,7 @@ class Index extends App.Controller
|
||||||
constructor: ->
|
constructor: ->
|
||||||
super
|
super
|
||||||
return if !@authenticate()
|
return if !@authenticate()
|
||||||
|
@title 'Language', true
|
||||||
@render()
|
@render()
|
||||||
|
|
||||||
render: =>
|
render: =>
|
||||||
|
|
|
@ -5,6 +5,7 @@ class Index extends App.Controller
|
||||||
constructor: ->
|
constructor: ->
|
||||||
super
|
super
|
||||||
return if !@authenticate()
|
return if !@authenticate()
|
||||||
|
@title 'Linked Accounts', true
|
||||||
@render()
|
@render()
|
||||||
|
|
||||||
render: =>
|
render: =>
|
||||||
|
|
|
@ -5,6 +5,7 @@ class Index extends App.Controller
|
||||||
constructor: ->
|
constructor: ->
|
||||||
super
|
super
|
||||||
return if !@authenticate()
|
return if !@authenticate()
|
||||||
|
@title 'Notifications', true
|
||||||
@render()
|
@render()
|
||||||
|
|
||||||
render: =>
|
render: =>
|
||||||
|
|
|
@ -5,6 +5,7 @@ class Index extends App.Controller
|
||||||
constructor: ->
|
constructor: ->
|
||||||
super
|
super
|
||||||
return if !@authenticate()
|
return if !@authenticate()
|
||||||
|
@title 'Password', true
|
||||||
@render()
|
@render()
|
||||||
|
|
||||||
render: =>
|
render: =>
|
||||||
|
|
Loading…
Reference in a new issue