Class: BootstrapEmail::Converter::Grid
- Defined in:
- lib/bootstrap-email/converters/grid.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from BootstrapEmail::Converter::Base
Instance Method Details
#build ⇒ Object
6 7 8 9 10 11 12 13 14 |
# File 'lib/bootstrap-email/converters/grid.rb', line 6 def build each_node('.row') do |node| add_class(node, 'row-responsive') if node.at("./*[contains(@class, 'col-lg-')]") node.replace(template('div', classes: node['class'], contents: template('table-to-tr', contents: node.inner_html))) end each_node('*[class*=col]') do |node| node.replace(template('td', classes: node['class'], contents: node.inner_html)) end end |