diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2015-09-01 13:19:20 +0200 |
---|---|---|
committer | fschneider <florian.schneider@student.tugraz.at> | 2015-09-01 13:28:49 +0200 |
commit | 49e49e58f97d16f3cd185f46f5ba1817c44b98b2 (patch) | |
tree | 9f0b2d0571bbee9cd25032f80e3f0ec3b9be4f95 /pdf-as-web/src/main/resources | |
parent | ae7594d7ade2ebcf56a5ea4d6fe3800d88563288 (diff) | |
download | pdf-as-4-49e49e58f97d16f3cd185f46f5ba1817c44b98b2.tar.gz pdf-as-4-49e49e58f97d16f3cd185f46f5ba1817c44b98b2.tar.bz2 pdf-as-4-49e49e58f97d16f3cd185f46f5ba1817c44b98b2.zip |
send post message to parent in result page
Conflicts:
pdf-as-web/src/main/resources/template_provide.html
Diffstat (limited to 'pdf-as-web/src/main/resources')
-rw-r--r-- | pdf-as-web/src/main/resources/template_error.html | 16 | ||||
-rw-r--r-- | pdf-as-web/src/main/resources/template_provide.html | 21 |
2 files changed, 36 insertions, 1 deletions
diff --git a/pdf-as-web/src/main/resources/template_error.html b/pdf-as-web/src/main/resources/template_error.html index 0371c568..87992c42 100644 --- a/pdf-as-web/src/main/resources/template_error.html +++ b/pdf-as-web/src/main/resources/template_error.html @@ -7,5 +7,21 @@ Error Page: <p>##ERROR_MESSAGE##</p> <p>##ERROR_STACK##</p> +<script type="text/javascript"> + try { + var data = { + pdfas: { + error: true, + msg: "##ERROR_MESSAGE##" + } + } + + parent.postMessage(data, '##PUBLICURL##'); + } catch(error) { + if(window.console) { + window.console.log("Sending message failed!", error); + } + } +</script> </body> </html> diff --git a/pdf-as-web/src/main/resources/template_provide.html b/pdf-as-web/src/main/resources/template_provide.html index 8016be07..1ff00d15 100644 --- a/pdf-as-web/src/main/resources/template_provide.html +++ b/pdf-as-web/src/main/resources/template_provide.html @@ -1 +1,20 @@ -##PDFDATAURL##
\ No newline at end of file +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html lang="de"> +<head> +<title>Provide PDF</title> +</head> +<body> +PDF ready @: <a href="##PDFDATAURL##">download here</a> + +<script type="text/javascript"> + var data = { + pdfas: { + success: true, + pdfUrl: "Child URL" + } + } + + parent.postMessage(data, '##PUBLICURL##'); +</script> +</body> +</html> |