mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-02 21:19:12 +00:00
Rename readWriteConfig to just config.js
This commit is contained in:
@@ -4,10 +4,10 @@
|
||||
</head>
|
||||
<body>
|
||||
<button type="button" id="show-config">Show Config</button>
|
||||
<form id="update-config" style="display: none;">
|
||||
<form id="config-form" style="display: none;">
|
||||
<h1 id="config-title"></h1>
|
||||
<h2>content-type</h2>
|
||||
</form>
|
||||
</body>
|
||||
<script src="views/scripts/readWriteConfig.js"></script>
|
||||
<script src="views/scripts/config.js"></script>
|
||||
</html>
|
||||
@@ -1,8 +1,10 @@
|
||||
var showConfig = document.getElementById("show-config");
|
||||
var configForm = document.getElementById("config-form");
|
||||
showConfig.addEventListener("click", () => {
|
||||
fetch("/config")
|
||||
.then(response => response.json())
|
||||
.then(data => {
|
||||
configForm.style.display = "block";
|
||||
for (let key in data) {
|
||||
console.log('key: ', key);
|
||||
console.log(data[key]);
|
||||
Reference in New Issue
Block a user