diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2015-09-17 12:47:04 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2015-09-17 12:47:04 +0200 |
commit | 92ce50f3dc07af0b34e9b3830eadf44b46187ca6 (patch) | |
tree | 88d00391b52d1316a8c1f2a8a0fa303ba3d68fbe /pdf-as-web/src/main/webapp/assets | |
parent | f6ed6ae57161cd01e6de13c0fe6c1132e5b06c99 (diff) | |
download | pdf-as-4-92ce50f3dc07af0b34e9b3830eadf44b46187ca6.tar.gz pdf-as-4-92ce50f3dc07af0b34e9b3830eadf44b46187ca6.tar.bz2 pdf-as-4-92ce50f3dc07af0b34e9b3830eadf44b46187ca6.zip |
fixed submit problem at least for desktop (check mobile app)
Diffstat (limited to 'pdf-as-web/src/main/webapp/assets')
-rw-r--r-- | pdf-as-web/src/main/webapp/assets/js/dragNdrop.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf-as-web/src/main/webapp/assets/js/dragNdrop.js b/pdf-as-web/src/main/webapp/assets/js/dragNdrop.js index 46cf6bac..547951d7 100644 --- a/pdf-as-web/src/main/webapp/assets/js/dragNdrop.js +++ b/pdf-as-web/src/main/webapp/assets/js/dragNdrop.js @@ -403,7 +403,7 @@ function sign(file, connector, locale) { form.method = "POST"; form.action = "Sign"; form.target = "mobileSignOnFrame"; - form.enctype = "multipart/form-data"; + form.enctype = "application/x-www-form-urlencoded"; var input = document.createElement('input'); input.type = 'hidden'; |