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

Commit

Permalink
Merge branch 'develop' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY authored Sep 26, 2018
2 parents 0649f06 + d2c9d10 commit b76e17a
Show file tree
Hide file tree
Showing 36 changed files with 18,721 additions and 1,514 deletions.
Binary file added Microscope
Binary file not shown.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Microscope is a blockchain explorer built with [React](https://reactjs.org/) for
- [x] **Progressive**: This project is under progressive development, which means it can work independently, and is able to work with [ReBirth](https://github.com/cryptape/re-birth), another project for AppChain.
- [x] **Internationalized**: This project supports i18n, default to 中文 and Englisgh.

## Changelog since 0.1.0

- [x] **Auto Fetch MetaData**: Auto fetch `https://domain` if protocol not specified.

## Getting Started

- [Development](#development)
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 b76e17a

Please sign in to comment.