Sha256: 2c2fc4daf3eeda757cc2c822431eb33cd4b3939049192e68bc0038f6f771387d

Contents?: true

Size: 432 Bytes

Versions: 16

Compression:

Stored size: 432 Bytes

Contents

<%# @param object [model] model instance %>
<%# @param field_name [String] name of the field %>
<%# @param value [Object] value of the field %>
<%# @param metadata [Hash] metadata of the field %>
<%= if value.nil?
  null
else
  max = metadata[:max] || max_text_length
  value = value.to_s
  if value.length > max
    concat content_tag(:code, value.truncate(max))
    itooltip value
  else
    content_tag :code, value
  end
end %>

Version data entries

16 entries across 4 versions & 1 rubygems

Version Path
wallaby-8.0.0 app/views/wallaby/resources/index/_lseg.html.erb
wallaby-8.0.0 app/views/wallaby/resources/index/_line.html.erb
wallaby-8.0.0 app/views/wallaby/resources/index/_circle.html.erb
wallaby-8.0.0 app/views/wallaby/resources/index/_box.html.erb
wallaby-7.0.0 app/views/wallaby/resources/index/_box.html.erb
wallaby-7.0.0 app/views/wallaby/resources/index/_circle.html.erb
wallaby-7.0.0 app/views/wallaby/resources/index/_line.html.erb
wallaby-7.0.0 app/views/wallaby/resources/index/_lseg.html.erb
wallaby-7.0.0.beta2 app/views/wallaby/resources/index/_box.html.erb
wallaby-7.0.0.beta2 app/views/wallaby/resources/index/_circle.html.erb
wallaby-7.0.0.beta2 app/views/wallaby/resources/index/_line.html.erb
wallaby-7.0.0.beta2 app/views/wallaby/resources/index/_lseg.html.erb
wallaby-7.0.0.beta1 app/views/wallaby/resources/index/_lseg.html.erb
wallaby-7.0.0.beta1 app/views/wallaby/resources/index/_line.html.erb
wallaby-7.0.0.beta1 app/views/wallaby/resources/index/_circle.html.erb
wallaby-7.0.0.beta1 app/views/wallaby/resources/index/_box.html.erb