Skip to content

Commit

Permalink
writeTrigger recovered
Browse files Browse the repository at this point in the history
  • Loading branch information
LasseMempel committed Aug 8, 2024
1 parent 8ddf1da commit e775307
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/podTesting2.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@
async function writeTrigger() {
event.preventDefault();
const preText = await readFromPod(url)
console.log(preText);
const commentry = document.getElementById("textInput").value;
const commenter = document.getElementById("commenterInput").value;
const concept = document.getElementById("conceptInput").value;
const newText = writeRdf(preText,commenter,concept,commentry, url);
const newText = preText+commenter+concept+commentry;
console.log(newText);
writeToPod(newText,url);
}
Expand Down

0 comments on commit e775307

Please sign in to comment.