提交 56aabfd5 编写于 作者: B Bodacious

Fixed tag_helper data-attribute bug with BigDecimals

上级 6ada771a
......@@ -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
......
......@@ -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
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册