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

Commit

Permalink
Ready for v0.2.0 (#42)
Browse files Browse the repository at this point in the history
* update: add default server

* doc: enable auto to top

* update: update with cita 0.18

* update: update with cita 0.18 (#23)

* update: update auto metadata fetch

* fix: fix transaction account display

* fix: fix transaction count display

* update: decimal block height, gas, transaction index

* update: decimal block height, gas, transaction index

* update: update gas to quota

* update: update block number to block height, and update selector text

* update: format value to coin

* update: display age as 'x days x hrs x mins x secs age'

* update: update diagram display

* update: add economical model in metadata panel

* update: update transaction type returned by observable

* update: add version of chain in metadata panel

* update: recover value to non unit

* update: fix display when 0 sec

* update: add economical model in metadata panel (#33)

* update: update banner ui

* update: hide lng selector if no choices

* fix: fix value display in search panel

* update: update default server list

* update: update charts ui

* update: hide version and economical model

* update: update tel invite link (#41)

* update: update doc to load project from cdn (#38)
  • Loading branch information
Keith-CY authored Sep 26, 2018
1 parent 662defc commit 162351e
Show file tree
Hide file tree
Showing 36 changed files with 18,109 additions and 678 deletions.
Binary file added Microscope
Binary file not shown.
2 changes: 1 addition & 1 deletion config/webpack.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module.exports = {
plugins: [
new webpack.DefinePlugin({
'process.env': {
CHAIN_SERVER: JSON.stringify(process.env.CHAIN_SERVER),
CHAIN_SERVERS: JSON.stringify(process.env.CHAIN_SERVERS),
APP_NAME: JSON.stringify(process.env.APP_NAME),
LNGS: JSON.stringify(process.env.LNGS)
},
Expand Down
28 changes: 13 additions & 15 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">

</head>

<body>
Expand All @@ -21,20 +20,8 @@
<nav class="app-nav no-badge">
<ul>
<li>
<a href="https://docs.nervos.org/" target="_about">Nervos</a>
<ul>
<li>
<a href="https://cryptape.github.io/nervos-appchain-Docs/" target="_about">AppChain</a>
</li>
<li>
<a href="https://cryptape.github.io/cita/" target="_about">CITA</a>
</li>
<li>
<a href="https://cryptape.github.io/neuron-android/#/" target="_about">Neuron</a>
</li>
<li>
<a href="https://cryptape.github.io/microscope/">Microscope</a>
</li>
<a href="https://docs.nervos.org/" target="_blank" class="app-nav-1">Nervos</a>
<ul id="project-list">
</ul>
</li>
</ul>
Expand Down Expand Up @@ -72,6 +59,17 @@

gtag('config', 'UA-122001869-5');

// external script
const external = document.createElement("script")
const timeStamp = new Date().getTime()
external.src = "https://cdn.cryptape.com/scripts/external.js?" + timeStamp
document.body.appendChild(external)
// custom style
const docStyle = document.createElement('link')
docStyle.rel = 'stylesheet'
docStyle.href = "https://cdn.cryptape.com/styles/docs.css?" + timeStamp
document.head.appendChild(docStyle)

</script>

</body>
Expand Down
Loading

0 comments on commit 162351e

Please sign in to comment.