heartcombo--simple_form/lib
Ian Vaughan 21d03ff583 Only output the wrapper if the block yields content
This change allows the wrappers to not output their rendered HTML when
when the block yields no content.

e.g. when defining an optional component :

  ba.wrapper tag: :div, class: 'form-helper -message -hint' do |bb|
    bb.optional :hint, wrap_with: { tag: :p }
  end

and that component is not used in a template :

  <%= form.input :name %>

Then the HTML output still contains the wrapper output :

  <div class="form-helper -message -help"></div>

If this behaviour is not desired, then the output of the empty tags can
be disabled via the `remove_empty` option.

  ba.wrapper tag: :div, class: 'form-helper -message -hint', remove_empty: true do |bb|
    bb.optional :hint, wrap_with: { tag: :p }
  end

The above config will not output any wrapper HTML.
2014-05-29 10:25:16 +01:00
..
generators/simple_form Add proper error_notification_class for Bootstrap 3 2014-04-15 22:36:31 +02:00
simple_form Only output the wrapper if the block yields content 2014-05-29 10:25:16 +01:00
simple_form.rb Allows host app to configure what root scope simple_form uses for i18n. 2014-04-04 16:32:29 +02:00