Page History
HTML |
---|
<style> .release-box { height: 30px; width: 100px; padding-top: 8px; text-align: center; border-radius: 5px; font-weight: bold; background-color: #8efeb3; border-color: #FCE28A; } .release-box:hover { cursor: hand; cursor: pointer; opacity: .9; } </style> <meta name="robots" content="noindex"> <div class="release-box"> <a href="https://docs.perspectium.com/display/krypton" style="text-decoration: none; color: #FFFFFF; display: block;"> Krypton </a> </div> |
Version
Html-bobswift |
---|
<style> .version { height: 25px; width: 200px; border-radius: 5px; border: 1px solid #ddd; } </style> <select class="version" id="version" onchange="showContent()"> <option value="8.31.0" selected>8>8.31.0</option> <option value="8.20.0">8 selected>8.20.0</option> </select> <script> function showContent() { var dropdown = document.getElementById("version"); var tabs = document.getElementsByClassName("rwui_tab_content"); for (var i = 0; i < tabs.length; i++) { if (tabs[i].getAttribute("data-name") == dropdown.value) { tabs[i].style.display = ""; } else { tabs[i].style.display = "none"; } } } </script> |
UI Tab | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||
Release Date: October 23, 2023
|
UI Tab | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| |||||||||||||||||||
Release Date: July 21, 2023
|
HTML |
---|
<script> var tabs = document.getElementsByClassName("rwui_tab_content"); for (var i = 0; i < tabs.length; i++) { if (tabs[i].getAttribute("data-name") == "8.30.0") { tabs[i].style.display = ""; } else { tabs[i].style.display = "none"; } } </script> |