Class: Wallaby::Resources::Index::PointHtml

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

Overview

Html cell

Instance Method Summary collapse

Instance Method Details

#renderString

Returns:

  • (String)


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

def render
  if value.nil?
    null
  else
    concat '('
    concat (:span, value[0], class: 'x')
    concat ', '
    concat (:span, value[1], class: 'y')
    ')'
  end
end