From 954e6994e56f0de509507c4a42703fa4e785fa3c Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Tue, 18 Jun 2013 22:56:22 +0200 Subject: [PATCH] Removed not needed html quoting in @title. --- .../app/controllers/_application_controller.js.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/app/controllers/_application_controller.js.coffee b/app/assets/javascripts/app/controllers/_application_controller.js.coffee index 6b99177e1..9592aff36 100644 --- a/app/assets/javascripts/app/controllers/_application_controller.js.coffee +++ b/app/assets/javascripts/app/controllers/_application_controller.js.coffee @@ -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) ->