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

Market table sorting #123

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/views/pages/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<div class="card-body p-0">
<div id='market-flex' class="d-flex d-flex-market align-items-start bd-highlight mb-0" >
<div id='market-container' class='container p-0'>
<table class="table table-sm table-hover table-orders">
<table class="table table-sm table-hover table-orders sortable">
<thead>
<tr>
<th scope="col"></th>
Expand Down
2 changes: 1 addition & 1 deletion server/views/partials/head.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<!-- Custom styles for this template -->
<link href="/css/styles.css" rel="stylesheet">

<script src="/sorttable.js"></script>
<script>
'use strict';

Expand Down
Loading