Sha256: 329a61b1973745f08ee4f1fd165b630ec944ab82d49b7990d695451deec4d98f

Contents?: true

Size: 805 Bytes

Versions: 15

Compression:

Stored size: 805 Bytes

Contents

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
#
# Removes simple_form's css class logic.
module SimpleForm
  module ActionViewExtensions
    module FormHelper
      def simple_form_for(record, options = {}, &block)
        options[:builder] ||= SimpleForm::FormBuilder
        options[:html] ||= {}
        unless options[:html].key?(:novalidate)
          options[:html][:novalidate] = !SimpleForm.browser_validations
        end

        with_simple_form_field_error_proc do
          form_for(record, options, &block)
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.15.2 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.16.4 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.14.1 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.15.1 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.16.3 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.16.2 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.16.1 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.16.0 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.15.0 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.15.0.beta.2 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.15.0.beta lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
fat_free_crm-0.14.0 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
reduced_fat_crm-0.15.0.beta lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
reduced_fat_crm-0.14.0 lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb