Skip to content
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.

Commit

Permalink
#1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sing Painter committed Nov 7, 2018
1 parent 9c7a751 commit f0eb2ec
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
6 changes: 6 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ lino.query
.then(properties => {
blockchainParametersTableHandler('post-param-table', properties);
});

lino.query
.getReputationParam()
.then(properties => {
blockchainParametersTableHandler('reputation-param-table', properties);
});

$changeWorkRealTime.addEventListener('click', () => {
if (workRealTime) {
Expand Down
15 changes: 13 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,17 @@ <h5>Current Height <span class="badge badge-primary" id="head-block-number">...<
</tbody>
</table>
</div>
<div class="table-responsive">
<table class="table table-bordered table-hover table-sm" id="reputation-param-table">
<thead>
<tr class="table-primary">
<th scope="col" colspan="2">Reputation Param</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<div class="row">
Expand Down Expand Up @@ -400,12 +411,12 @@ <h5 class="modal-title">Node address</h5>
</div>
</div>
<button class="btn btn-success" id="back-to-top"><span class="icon-circle-up"></span> Back to top</button>
<script src="https://cdn.jsdelivr.net/npm/lino-js@1.0.1/lib/lino-js.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lino-js@1.0.2/lib/lino-js.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap.native@2.0.23/dist/bootstrap-native-v4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@7.13.1/dist/sweetalert2.all.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.12.0/build/highlight.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-beautify@1.7.5/js/lib/beautify.js"></script>
<script src="utils.js"></script>
<script src="app.js"></script>
<script src="app.js?201811070925"></script>
</body>
</html>

0 comments on commit f0eb2ec

Please sign in to comment.