From 22b3f3a4916cdbd578ba7c1614aec419074bd8ac Mon Sep 17 00:00:00 2001 From: wvengen Date: Sat, 9 Feb 2013 10:19:48 +0100 Subject: [PATCH] fix bug in javascript i18n --- app/views/shared/_group_form_fields.html.haml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/shared/_group_form_fields.html.haml b/app/views/shared/_group_form_fields.html.haml index 8035a2c5..f13b0054 100644 --- a/app/views/shared/_group_form_fields.html.haml +++ b/app/views/shared/_group_form_fields.html.haml @@ -38,9 +38,9 @@ $("##{f.object.class.to_s.underscore}_user_tokens").tokenInput("#{users_path(:format => :json)}", { crossDomain: false, prePopulate: $("##{f.object.class.to_s.underscore}_user_tokens").data("pre"), - hintText: #{t('.search_user')}, - noResultText: #{t('.user_not_found')} - searchingText: #{t('.search')}, + hintText: '#{t('.search_user')}', + noResultText: '#{t('.user_not_found')}', + searchingText: '#{t('.search')}', theme: 'facebook' }); });