Class: Wallaby::Resources::Index::ColorHtml

Inherits:
Cell
  • Object
show all
Defined in:
app/views/wallaby/resources/index/color_html.rb

Overview

Html cell

Instance Method Summary collapse

Instance Method Details

#renderString

Returns:

  • (String)


9
10
11
12
13
14
15
16
# File 'app/views/wallaby/resources/index/color_html.rb', line 9

def render
  if value.nil?
    null
  else
    concat (:span, nil, style: "background-color: #{value};", class: 'color-square')
    (:span, value, class: 'text-uppercase')
  end
end