Class: Mural::Widget::TableCell
- Inherits:
-
Object
- Object
- Mural::Widget::TableCell
- Includes:
- Codec
- Defined in:
- lib/mural/widget/table_cell.rb
Defined Under Namespace
Classes: Style, TextContent
Class Method Summary collapse
Methods included from Codec
Class Method Details
.decode(json) ⇒ Object
34 35 36 37 38 39 |
# File 'lib/mural/widget/table_cell.rb', line 34 def self.decode(json) super.tap do |cell| cell.style = Style.decode(cell.style) cell.text_content = TextContent.decode(cell.text_content) end end |