Method: Celerity::TableCell#colspan
- Defined in:
- lib/celerity/elements/table_cell.rb
#colspan ⇒ Object
23 24 25 26 27 |
# File 'lib/celerity/elements/table_cell.rb', line 23 def colspan assert_exists attribute_value = @object.getAttribute('colspan').to_i attribute_value > 0 ? attribute_value : 1 end |