class Forme::InputsWrapper::OL

Use an <ol> tag to wrap the inputs.

Registered as :ol.

Public Instance Methods

call(form, opts, &block) click to toggle source

Wrap the inputs in an <ol> tag

   # File lib/forme/transformers/inputs_wrapper.rb
46 def call(form, opts, &block)
47   form.tag(:ol, opts[:attr], &block)
48 end