From fa869698c592c9d7d0f33b64c8fba409ebf5d75f Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 17 Dec 2011 12:35:15 +0100 Subject: remove php code from upload_from.js Signed-off-by: Florian Pritz --- application/views/file/upload_form.php | 4 +++- data/js/upload_form.js | 5 ++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/application/views/file/upload_form.php b/application/views/file/upload_form.php index 7ca0e2a13..5eea494e1 100644 --- a/application/views/file/upload_form.php +++ b/application/views/file/upload_form.php @@ -6,7 +6,6 @@ Optional password (for deletion and search):

- +

Uploads/pastes are deleted after days 0): ?> diff --git a/data/js/upload_form.js b/data/js/upload_form.js index 0dcb53708..598d86465 100644 --- a/data/js/upload_form.js +++ b/data/js/upload_form.js @@ -2,7 +2,7 @@ if (window.File && window.FileList) { function checkFileUpload(evt) { var f = evt.target.files[0]; - if (f.size > ) { + if (f.size > max_upload_size) { document.getElementById('upload_button').value = "File too big"; document.getElementById('upload_button').disabled = true; } else { @@ -40,7 +40,6 @@ function gen_boundary() { } function do_paste() { var http = new XMLHttpRequest(); - var url = ""; var CRLF = "\r\n"; var boundary = "--" + gen_boundary(); var body = "--" + boundary + CRLF @@ -49,7 +48,7 @@ function do_paste() { + CRLF + document.getElementById("textarea").value + CRLF + "--" + boundary + "--" + CRLF + CRLF; - http.open("POST", url, true); + http.open("POST", upload_url, true); //Send the proper header information along with the request http.setRequestHeader("Content-type", "multipart/form-data; boundary=" + boundary); -- cgit v1.2.3-24-g4f1b