Removed not needed html quoting in @title.

This commit is contained in:
Martin Edenhofer 2013-06-18 22:56:22 +02:00
parent 68f608d9f9
commit 954e6994e5

View file

@ -9,7 +9,7 @@ class App.Controller extends Spine.Controller
# add @title methode to set title
title: (name) ->
# $('html head title').html( @Config.get(product_name) + ' - ' + App.i18n.translateInline(name) )
document.title = @Config.get('product_name') + ' - ' + App.i18n.translateInline(name)
document.title = @Config.get('product_name') + ' - ' + App.i18n.translatePlain(name)
# add @notify methode to create notification
notify: (data) ->