15 lines
338 B
HTML
15 lines
338 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript" src="config.js"></script>
|
|
<script type="text/javascript">
|
|
window.onload = function () {
|
|
var elemDiv = document.createElement('pre');
|
|
elemDiv.innerText = JSON.stringify(parameters, null, 2);
|
|
document.body.appendChild(elemDiv);
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|