Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests sorting #525

Merged
merged 18 commits into from
Aug 6, 2020
Prev Previous commit
Next Next commit
Refactoring
  • Loading branch information
wojciech.blachowski committed Sep 24, 2019
commit 373a9878f8c9f47d18026abc736bbb17619427ee
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@
</div>
<form class="dropdown-menu">
<div class="dropdown-field">
<button data-ordering-attribute="name" class="dropdown-item">Order by name</button>
<button data-ordering-attribute="name" class="dropdown-item">Sort by name</button>
</div>
<div class="dropdown-field">
<button data-ordering-attribute="+" class="dropdown-item">Order by suite ordering</button>
<button data-ordering-attribute="+" class="dropdown-item">Sort by suite ordering</button>
</div>
</form>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ define(['angularAMD'], function (angularAMD) {
};

function init(scope, $element) {
updateOrdering('name', 'Order by name');
updateOrdering('name', 'Sort by name');
$element.popover({
placement: 'bottom',
trigger: 'click',
Expand Down