Method: Deface::Actions::RemoveFromAttributes#execute_for_attribute
- Defined in:
- lib/deface/actions/remove_from_attributes.rb
#execute_for_attribute(target_element, name, value) ⇒ Object
4 5 6 7 8 9 10 |
# File 'lib/deface/actions/remove_from_attributes.rb', line 4 def execute_for_attribute(target_element, name, value) if target_element.attributes.key?(name) target_element.set_attribute(name, target_element.attributes[name].value.gsub(value.to_s, '').strip) elsif target_element.attributes.key?("data-erb-#{name}") target_element.set_attribute("data-erb-#{name}", target_element.attributes["data-erb-#{name}"].value.gsub(value.to_s, '').strip) end end |