-
+
+
+ Sim:
+
+
+
+
+
@@ -68,7 +122,7 @@
});
const log_area = document.getElementById('log');
function send_to_icarus() {
- log_area.value = "Please wait...";
+ log_area.innerHTML = "Please wait...";
fetch('%IVERILOGPOSTURI%',
{
method: 'POST',
@@ -79,7 +133,7 @@
body: editor.getValue()
})
.then((response) => response.text())
- .then((text) => { log_area.value = text; });
+ .then((text) => { log_area.innerHTML = text; });
};
function save_code() {