class Deface::Actions::RemoveFromAttributes

Public Instance Methods

execute_for_attribute(target_element, name, value) click to toggle source
# 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