Fix some outdated stuff in interactive pages

This commit is contained in:
mDuo13
2021-07-14 15:46:16 -07:00
parent b800df6c93
commit f9f608d469
2 changed files with 2 additions and 5 deletions

View File

@@ -21,9 +21,8 @@ The [**Community Standards Drafts**](https://github.com/xrp-community/standards-
You can find various XRP Ledger-related projects under these and other GitHub organizations: You can find various XRP Ledger-related projects under these and other GitHub organizations:
- [XRP Ledger Foundation](https://github.com/XRPLF/)
- [Ripple](https://github.com/ripple/) - [Ripple](https://github.com/ripple/)
- [RippleX (formerly Xpring)](https://github.com/xpring-eng/)
- [XRP Community](https://github.com/xrp-community/)
- [XRPL Labs](https://github.com/XRPL-Labs/) <!-- SPELLING_IGNORE: xrpl --> - [XRPL Labs](https://github.com/XRPL-Labs/) <!-- SPELLING_IGNORE: xrpl -->
Be sure to look at each repository's license and contributing guidelines before contributing to that repository. Be sure to look at each repository's license and contributing guidelines before contributing to that repository.

View File

@@ -21,9 +21,8 @@ WebSocket follows a model where the client and server establish one connection,
- You need a stable internet connection and access to a `rippled` server. The embedded examples connect to Ripple's pool of public servers. If you [run your own `rippled` server](install-rippled.html), you can also connect to that server locally. - You need a stable internet connection and access to a `rippled` server. The embedded examples connect to Ripple's pool of public servers. If you [run your own `rippled` server](install-rippled.html), you can also connect to that server locally.
- To properly handle XRP values without rounding errors, you need access to a number type that can do math on 64-bit unsigned integers. The examples in this tutorial use [big.js](https://github.com/MikeMcl/big.js/). If you are working with [issued currencies](issued-currencies.html), you need even more precision. For more information, see [Currency Precision](currency-formats.html#xrp-precision). - To properly handle XRP values without rounding errors, you need access to a number type that can do math on 64-bit unsigned integers. The examples in this tutorial use [big.js](https://github.com/MikeMcl/big.js/). If you are working with [issued currencies](issued-currencies.html), you need even more precision. For more information, see [Currency Precision](currency-formats.html#xrp-precision).
<!-- Helper for interactive tutorial breadcrumbs --> <!-- Big number support -->
<script type="application/javascript" src="assets/vendor/big.min.js"></script> <script type="application/javascript" src="assets/vendor/big.min.js"></script>
<script type="application/javascript" src="assets/js/interactive-tutorial.js"></script>
<script type="application/javascript"> <script type="application/javascript">
// Helper stuff for this interactive tutorial specifically // Helper stuff for this interactive tutorial specifically
@@ -33,7 +32,6 @@ function writeToConsole(console_selector, message) {
$(console_selector).append(write_msg) $(console_selector).append(write_msg)
// TODO: JSON pretty-printing, maybe w/ multiple input args? // TODO: JSON pretty-printing, maybe w/ multiple input args?
} }
</script> </script>
{% set n = cycler(* range(1,99)) %} {% set n = cycler(* range(1,99)) %}