diff options
author | luxagraf <sng@luxagraf.net> | 2023-11-17 17:07:43 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-11-17 17:07:43 -0500 |
commit | a477033630bd2e561d6613ad1816c558c10b5621 (patch) | |
tree | 55bc42e6d6225d45a95aa950b146c15880e23aa9 /app/gtd | |
parent | 42a2df61ae4fb60f5182ecd39e5e4df844180f1a (diff) |
gtd: added url javascript back
Diffstat (limited to 'app/gtd')
-rw-r--r-- | app/gtd/templates/gtd/note_form.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/gtd/templates/gtd/note_form.html b/app/gtd/templates/gtd/note_form.html index 13591e8..006312b 100644 --- a/app/gtd/templates/gtd/note_form.html +++ b/app/gtd/templates/gtd/note_form.html @@ -30,6 +30,7 @@ form .selector label { let params = new URL(document.location).searchParams; document.getElementById('id_title').value = params.get("title"); document.getElementById('id_body_markdown').value = params.get("description"); +document.getElementById('id_url').value = params.get("url"); </script> {% endif %} {% endblock%} |