api/ui/debug/bootstrap.html (36 lines of code) (raw):
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Scheduler</title>
<link rel="stylesheet" href="../node_modules/datatables.net-dt/css/jquery.dataTables.css" type="text/css"/>
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="../node_modules/jquery-ui-dist/jquery-ui.min.css">
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
<script src="../node_modules/datatables.net/js/jquery.dataTables.min.js"
type="text/javascript"></script>
<script src="../node_modules/jquery-ui-dist/jquery-ui.min.js"></script>
<script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="js/utils.js"></script>
<script src="js/bootstrap.js"></script>
<script type='text/javascript'>
$(document).ready(function () {
initBootstrapViewer();
});
</script>
</head>
<body>
<h2>Bootstrap Retry</h2>
<button onclick="BootstrapRetry()">Submit</button>
<h2>Bootstrap Viewer</h2>
<div class="row">
<div class="col-md-12" id="table-shards">
<table id="table-shards-table" class="hover stripe order-column"></table>
</div>
<div class="col-md-6 collapse" id="table-columns">
<button id="table-columns-close" class="btn btn-danger"><b>X</b></button>
<table id="table-columns-table" class="hover stripe order-column"></table>
</div>
</div>
</body>
</html>