README.md in bootstrap-view-helpers-0.0.12 vs README.md in bootstrap-view-helpers-0.0.13
- old
+ new
@@ -296,12 +296,21 @@
<% end %>
```
### Form Helpers
+#### form_actions
+
+```erb
+<%= form_actions do %>
+ <%= submit_button_tag %>
+ <%= cancel_button_tag(url: '#') %>
+<% end %>
+```
+
#### submit_tag_button
-Returns <input> similar to +#submit_tag()+ but:
+Returns <input> similar to `#submit_tag()` but:
* styled like a Bootstrap button, type `:primary`
* has `:disable_with` set to "Processing ..."
```ruby
submit_button_tag # => <input class="btn btn-primary" data-disable-with="Processing ..." name="commit" type="submit" value="Save changes" />