formtastic/formtastic

View on GitHub
lib/formtastic/actions/buttonish.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module Formtastic
  module Actions
    module Buttonish
      
      def supported_methods
        [:submit, :reset]
      end

      def extra_button_html_options
        {
          :type => method
        }
      end
      
    end
  end
end