Skip to content

Commit

Permalink
Fixed tag_helper data-attribute bug with BigDecimals
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodacious committed May 17, 2012
1 parent 6ada771 commit 56aabfd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions actionpack/lib/action_view/helpers/tag_helper.rb
Expand Up @@ -154,8 +154,9 @@ def tag_options(options, escape = true)

def data_tag_option(key, value, escape)
key = "data-#{key.to_s.dasherize}"
value = value.to_json if !value.is_a?(String) && !value.is_a?(Symbol)

unless value.is_a?(String) || value.is_a?(Symbol) || value.is_a?(BigDecimal)
value = value.to_json
end
tag_option(key, value, escape)
end

Expand Down
4 changes: 2 additions & 2 deletions actionpack/test/template/tag_helper_test.rb
Expand Up @@ -118,8 +118,8 @@ def test_disable_escaping

def test_data_attributes
['data', :data].each { |data|
assert_dom_equal '<a data-a-number="1" data-array="[1,2,3]" data-hash="{&quot;key&quot;:&quot;value&quot;}" data-string="hello" data-symbol="foo" />',
tag('a', { data => { :a_number => 1, :string => 'hello', :symbol => :foo, :array => [1, 2, 3], :hash => { :key => 'value'} } })
assert_dom_equal '<a data-a-float="3.14" data-a-big-decimal="-123.456" data-a-number="1" data-array="[1,2,3]" data-hash="{&quot;key&quot;:&quot;value&quot;}" data-string="hello" data-symbol="foo" />',
tag('a', { data => { :a_float => 3.14, :a_big_decimal => BigDecimal.new("-123.456"), :a_number => 1, :string => 'hello', :symbol => :foo, :array => [1, 2, 3], :hash => { :key => 'value'} } })
}
end
end

0 comments on commit 56aabfd

Please sign in to comment.