lib/batch_translation.rb in slash_admin-0.1.0 vs lib/batch_translation.rb in slash_admin-1.0
- old
+ new
@@ -7,10 +7,10 @@
raise ArgumentError, 'Missing block' unless block_given?
options = args.extract_options!
@index = @index ? @index + 1 : 1
object_name = "#{@object_name}[translations_attributes][#{@index}]"
form_object = @object || @object_name.to_s.camelize.constantize.new
- object = form_object.translations.select{ |t| t.locale.to_s == locale.to_s }.first
+ object = form_object.translations.select { |t| t.locale.to_s == locale.to_s }.first
@template.concat @template.hidden_field_tag("#{object_name}[id]", object ? object.id : '')
@template.concat @template.hidden_field_tag("#{object_name}[locale]", locale)
@template.fields_for(object_name, object, options, &proc)
end
end