Sha256: 3acc9eaaf721988ac9fc3d35f94a52ce3fa17e42ca14d76efdc7cdf4b77b91cc
Contents?: true
Size: 1.07 KB
Versions: 5
Compression:
Stored size: 1.07 KB
Contents
<section id="flash"> <div class="page-header"> <h1>Flash <small>bootstrap flash helper</small> </h1> </div> <p>Flash helpers wraps bootstrap alerts component.</p> <h3>Default</h3> <div class="bs-docs-example"> <%= f('warning') %> </div> <pre class="prettyprint linenums lang-erb"> <%= f('warning') %> </pre> <h3>With options</h3> <div class="bs-docs-example"> <%= f('error', type: :error) %> <%= f('success', type: :success) %> <%= f('info', type: :info) %> <%= f(type: :info, block: true, closable: false) do %> <h4>This is an Info</h4> <p>The information here is a demo with block and without close button.</p> <% end %> </div> <pre class="prettyprint linenums lang-erb"> <%= f('error', type: :error) %> <%= f('success', type: :success) %> <%= f('info', type: :info) %> <%= f(type: :info, block: true, closable: false) do %> <h4>This is an Info</h4> <p>The information here is a demo with block and without close button.</p> <% end %> </pre> </section>
Version data entries
5 entries across 5 versions & 1 rubygems