From ad561b806e31d917c646508c1d7354c95d80e694 Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Tue, 7 Oct 2014 16:21:11 +0200 Subject: [PATCH] correctly color create buttons --- .../javascripts/app/controllers/_channel/email.js.coffee | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/assets/javascripts/app/controllers/_channel/email.js.coffee b/app/assets/javascripts/app/controllers/_channel/email.js.coffee index 6c6a0cb80..57522bc41 100644 --- a/app/assets/javascripts/app/controllers/_channel/email.js.coffee +++ b/app/assets/javascripts/app/controllers/_channel/email.js.coffee @@ -50,7 +50,7 @@ class App.ChannelEmailFilter extends App.Controller render: => data = App.PostmasterFilter.search( sortBy: 'name' ) - template = $( '
' + App.i18n.translateContent('New') + '
' ) + template = $( '
' + App.i18n.translateContent('New') + '
' ) new App.ControllerTable( el: template.find('.overview') @@ -137,7 +137,7 @@ class App.ChannelEmailAddress extends App.Controller render: => data = App.EmailAddress.search( sortBy: 'realname' ) - template = $( '
' + App.i18n.translateContent('New') + '
' ) + template = $( '
' + App.i18n.translateContent('New') + '
' ) new App.ControllerTable( el: template.find('.overview') @@ -225,7 +225,7 @@ class App.ChannelEmailSignature extends App.Controller render: => data = App.Signature.search( sortBy: 'name' ) - template = $( '
' + App.i18n.translateContent('New') + '
' ) + template = $( '
' + App.i18n.translateContent('New') + '
' ) new App.ControllerTable( el: template.find('.overview') model: App.Signature @@ -310,7 +310,7 @@ class App.ChannelEmailInbound extends App.Controller render: => channels = App.Channel.search( filter: { area: 'Email::Inbound' } ) - template = $( '
' + App.i18n.translateContent('New') + '
' ) + template = $( '
' + App.i18n.translateContent('New') + '
' ) new App.ControllerTable( el: template.find('.overview')