Skip to content

Commit

Permalink
Replace class "Actions" with "btn-toolbar"
Browse files Browse the repository at this point in the history
  • Loading branch information
OldStarchy committed Jul 2, 2018
1 parent f758ae3 commit d2ddadd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/dist/js/userforms.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/src/bundles/UserForms.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ jQuery(document).ready(($) => {
this.$el.find('.step-button-next')[stepID >= i ? 'hide' : 'show']();

// Update the "Actions".
this.$el.find('.Actions')[stepID >= i ? 'show' : 'hide']();
this.$el.find('.btn-toolbar')[stepID >= i ? 'show' : 'hide']();

// Stop processing last step
break;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<% if $Actions %>
<nav class="Actions">
<nav class="btn-toolbar">
<% loop $Actions %>
$Field
<% end_loop %>
</nav>
<% end_if %>
<% end_if %>
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
</li>

<% if $Actions %>
<li class="step-button-wrapper Actions">
<li class="step-button-wrapper btn-toolbar">
<% loop $Actions %>
$Field
<% end_loop %>
</li>
<% end_if %>

</ul>
</nav>
</nav>

0 comments on commit d2ddadd

Please sign in to comment.