aboutsummaryrefslogtreecommitdiff
path: root/htdocs/js/admin/12-upload-list.js
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs/js/admin/12-upload-list.js')
-rw-r--r--htdocs/js/admin/12-upload-list.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/htdocs/js/admin/12-upload-list.js b/htdocs/js/admin/12-upload-list.js
new file mode 100644
index 0000000..5b496f6
--- /dev/null
+++ b/htdocs/js/admin/12-upload-list.js
@@ -0,0 +1,19 @@
+var BlogUploadList = {
+ submitNoteEdit: function(action, note) {
+ if (note === null)
+ return;
+
+ var form = document.createElement('form');
+ form.setAttribute('method', 'post');
+ form.setAttribute('action', action);
+
+ var input = document.createElement('input');
+ input.setAttribute('type', 'hidden');
+ input.setAttribute('name', 'note');
+ input.setAttribute('value', note);
+
+ form.appendChild(input);
+ document.body.appendChild(form);
+ form.submit();
+ }
+};