eBooru/app/inputs/form_builder_common.rb

11 lines
280 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module FormBuilderCommon
def insert_autocomplete(options)
options[:input_html] ||= {}
options[:input_html][:data] = {}
options[:input_html][:data][:autocomplete] = options[:autocomplete] if options[:autocomplete]
options
end
end