mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-24 18:21:38 +00:00
.circleci
.github
DOCKER
benchmarks
blockchain
cmd
config
consensus
docs
_static
custom_collapsible_code.css
custom_collapsible_code.js
_templates
architecture
assets
examples
images
spec
specification
.python-version
Makefile
README.md
abci-cli.md
app-architecture.md
app-development.md
conf.py
deploy-testnets.md
determinism.md
ecosystem.md
getting-started.md
how-to-read-logs.md
index.rst
indexing-transactions.md
install.md
introduction.md
requirements.txt
running-in-production.md
specification.rst
subscribing-to-events-via-websocket.md
terraform-and-ansible.md
transactional-semantics.md
using-tendermint.md
evidence
libs
lite
mempool
networks
node
p2p
privval
proxy
rpc
scripts
state
test
types
version
.editorconfig
.gitignore
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Gopkg.lock
Gopkg.toml
LICENSE
Makefile
README.md
ROADMAP.md
SECURITY.md
Vagrantfile
appveyor.yml
codecov.yml
docker-compose.yml
11 lines
460 B
JavaScript
11 lines
460 B
JavaScript
![]() |
let makeCodeBlocksCollapsible = function() {
|
||
|
$(".toggle > *").hide();
|
||
|
$(".toggle .header").show();
|
||
|
$(".toggle .header").click(function() {
|
||
|
$(this).parent().children().not(".header").toggle({"duration": 400});
|
||
|
$(this).parent().children(".header").toggleClass("open");
|
||
|
});
|
||
|
};
|
||
|
// we could use the }(); way if we would have access to jQuery in HEAD, i.e. we would need to force the theme
|
||
|
// to load jQuery before our custom scripts
|