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

Commit f0eb2ec

Browse files
author
Sing Painter
committedNov 7, 2018
1 parent 9c7a751 commit f0eb2ec

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed
 

‎app.js

+6
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,12 @@ lino.query
140140
.then(properties => {
141141
blockchainParametersTableHandler('post-param-table', properties);
142142
});
143+
144+
lino.query
145+
.getReputationParam()
146+
.then(properties => {
147+
blockchainParametersTableHandler('reputation-param-table', properties);
148+
});
143149

144150
$changeWorkRealTime.addEventListener('click', () => {
145151
if (workRealTime) {

‎index.html

+13-2
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,17 @@ <h5>Current Height <span class="badge badge-primary" id="head-block-number">...<
243243
</tbody>
244244
</table>
245245
</div>
246+
<div class="table-responsive">
247+
<table class="table table-bordered table-hover table-sm" id="reputation-param-table">
248+
<thead>
249+
<tr class="table-primary">
250+
<th scope="col" colspan="2">Reputation Param</th>
251+
</tr>
252+
</thead>
253+
<tbody>
254+
</tbody>
255+
</table>
256+
</div>
246257
</div>
247258
</div>
248259
<div class="row">
@@ -400,12 +411,12 @@ <h5 class="modal-title">Node address</h5>
400411
</div>
401412
</div>
402413
<button class="btn btn-success" id="back-to-top"><span class="icon-circle-up"></span> Back to top</button>
403-
<script src="https://cdn.jsdelivr.net/npm/lino-js@1.0.1/lib/lino-js.umd.min.js"></script>
414+
<script src="https://cdn.jsdelivr.net/npm/lino-js@1.0.2/lib/lino-js.umd.min.js"></script>
404415
<script src="https://cdn.jsdelivr.net/npm/bootstrap.native@2.0.23/dist/bootstrap-native-v4.min.js"></script>
405416
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@7.13.1/dist/sweetalert2.all.min.js"></script>
406417
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.12.0/build/highlight.min.js"></script>
407418
<script src="https://cdn.jsdelivr.net/npm/js-beautify@1.7.5/js/lib/beautify.js"></script>
408419
<script src="utils.js"></script>
409-
<script src="app.js"></script>
420+
<script src="app.js?201811070925"></script>
410421
</body>
411422
</html>

0 commit comments

Comments
 (0)
This repository has been archived.