Class: Deface::Actions::InsertBottom
- Inherits:
-
ElementAction
- Object
- Action
- ElementAction
- Deface::Actions::InsertBottom
- Defined in:
- lib/deface/actions/insert_bottom.rb
Instance Attribute Summary
Attributes inherited from ElementAction
Instance Method Summary collapse
Methods inherited from ElementAction
Methods inherited from Action
#initialize, #range_compatible?, to_sym
Constructor Details
This class inherits a constructor from Deface::Actions::ElementAction
Instance Method Details
#execute(target_element) ⇒ Object
4 5 6 7 8 9 10 11 |
# File 'lib/deface/actions/insert_bottom.rb', line 4 def execute(target_element) target_element = target_element.first if target_element.children.size == 0 target_element.children = source_element else target_element.children.after(source_element) end end |