Added change of page title.

This commit is contained in:
Martin Edenhofer 2015-06-28 03:45:53 +02:00
parent 46f18b7ecf
commit 96d6d94778
6 changed files with 6 additions and 0 deletions

View file

@ -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()

View file

@ -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')

View file

@ -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: =>

View file

@ -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: =>

View file

@ -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: =>

View file

@ -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: =>