aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-web
diff options
context:
space:
mode:
authorfschneider <florian.schneider@student.tugraz.at>2015-08-20 10:25:18 +0200
committerfschneider <florian.schneider@student.tugraz.at>2015-08-20 10:25:18 +0200
commit85614dff20a23c850696e486d5f6131503d4ad27 (patch)
tree1c3ee4581265d1d9ec627f7096f3afb6a38f09f6 /pdf-as-web
parent14bda0e08c2168f4a9df143d8896c92bfdb9b47c (diff)
downloadpdf-as-4-85614dff20a23c850696e486d5f6131503d4ad27.tar.gz
pdf-as-4-85614dff20a23c850696e486d5f6131503d4ad27.tar.bz2
pdf-as-4-85614dff20a23c850696e486d5f6131503d4ad27.zip
Before: Back to Center Positioning with Bootstrap
Diffstat (limited to 'pdf-as-web')
-rw-r--r--pdf-as-web/src/main/webapp/assets/css/style.css7
-rw-r--r--pdf-as-web/src/main/webapp/assets/js/dragNdrop.js65
-rw-r--r--pdf-as-web/src/main/webapp/index.jsp5
3 files changed, 70 insertions, 7 deletions
diff --git a/pdf-as-web/src/main/webapp/assets/css/style.css b/pdf-as-web/src/main/webapp/assets/css/style.css
index 989355ef..facb268a 100644
--- a/pdf-as-web/src/main/webapp/assets/css/style.css
+++ b/pdf-as-web/src/main/webapp/assets/css/style.css
@@ -710,10 +710,15 @@ footer {
}
#navBar {
- margin-left: 37.5%;
+ margin-left: 37.5%;
+
}
}
+body.wait, body.wait *{
+ cursor: wait !important;
+}
+
#DropContainer {
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 f581efc9..799b4dd6 100644
--- a/pdf-as-web/src/main/webapp/assets/js/dragNdrop.js
+++ b/pdf-as-web/src/main/webapp/assets/js/dragNdrop.js
@@ -11,6 +11,10 @@ $(window).unload(function() {
$("#FileNamePreview").val("");
});
+var mobile_success = false;
+var local_success = false;
+var keystore_success = false;
+
function registerEventListeners() {
var locale = "EN";
var connector = "mobilebku";
@@ -73,7 +77,11 @@ function registerEventListeners() {
toggleView("place");
});
$("#SignStepButton").bind("click", function(evt) {
-
+ $("#methodContainer").show();
+ $("#mobileSignOnFrame").hide();
+ mobile_success = false;
+ local_success = false;
+ keystore_success = false;
toggleView("sign");
});
$("#FinishStepButton").bind("click", function(evt) {
@@ -88,7 +96,7 @@ function registerEventListeners() {
$("#placeContinue").bind("click", function(evt) {
-
+
$("#SignStepButton").click();
});
@@ -212,6 +220,8 @@ function registerEventListeners() {
return;
}
+ $("body").addClass("wait");
+
$("#FileNamePreview").val(files[0].name);
$("uploadContinue").prop("disabled", true);
@@ -305,6 +315,8 @@ function registerEventListeners() {
previewFile(file);
}
+
+ $("body").removeClass("wait");
}
$("input[name='connector']").bind("change", function(evt) {
@@ -322,6 +334,8 @@ function registerEventListeners() {
$("#MobilePhoneSubmit").bind("click", function(evt) {
$("#mobileBKU").click();
+ mobile_success = true;
+ $("body").addClass("wait");
sign(file, connector, locale);
});
@@ -329,12 +343,16 @@ function registerEventListeners() {
$("#LocalBKUSubmit").bind("click", function(evt) {
$("#localBKU").click();
+ local_success = true;
+ $("body").addClass("wait");
sign(file, connector, locale);
});
$("#KeystoreSubmit").bind("click", function(evt) {
$("#jks").click();
+ keystore_success = true;
+ $("body").addClass("wait");
sign(file, connector, locale);
});
}
@@ -364,6 +382,8 @@ function sign(file, connector, locale) {
ifr = document.getElementById('iFrame').contentWindow;
if(ifr.isSignaturePlaced()) { //Signature has been manually placed
+
+ console.log("signature manually placed: x: y:" + ifr.global_status.getSignature().posx + ", " + ifr.global_status.getSignature().posy)
fd.append("sig-pos-x", ifr.global_status.getSignature().posx);
fd.append("sig-pos-y", ifr.global_status.getSignature().posy);
fd.append("sig-pos-p", ifr.global_status.getSignature().page);
@@ -380,8 +400,45 @@ function sign(file, connector, locale) {
},
success: function(response) {
console.log("hello there, response is: " + response);
- $("#DownloadResultButton").attr("onclick", "window.open('" + response + "')");
- $("#FinishStepButton").click();
+
+ if(mobile_success)
+ {
+ console.log("mobile success...now switch html");
+ $("#methodContainer").hide();
+ $("#mobileSignOnFrame").show();
+ $("#mobileSignOnFrame").contents().find('html').empty();
+ $("#mobileSignOnFrame").contents().find('html').html(response);
+ mobile_success = false;
+
+ }
+ else if(local_success)
+ {
+ console.log("local success...now switch html, nothing for now");
+ $("#methodContainer").hide();
+ $("#mobileSignOnFrame").show();
+ $("#mobileSignOnFrame").contents().find('html').empty();
+ $("#mobileSignOnFrame").contents().find('html').html(response);
+ local_success = false;
+ }
+ else if(keystore_success)
+ {
+ console.log("keystore success...now switch html");
+ $("#DownloadResultButton").attr("onclick", "window.open('" + response + "')");
+ $("#FinishStepButton").click();
+ keystore_success = false;
+ }
+ else
+ {
+ $("#methodContainer").show();
+ $("#mobileSignOnFrame").hide();
+ }
+
+ $("body").removeClass("wait");
+
+ console.log("finished switching html");
+
+
+
//$("html").empty();
//$("html").html(response);
/*
diff --git a/pdf-as-web/src/main/webapp/index.jsp b/pdf-as-web/src/main/webapp/index.jsp
index 1948b457..5e8ea875 100644
--- a/pdf-as-web/src/main/webapp/index.jsp
+++ b/pdf-as-web/src/main/webapp/index.jsp
@@ -150,7 +150,7 @@
<%
}
%> -->
- <!-- <%
+ <%
if(WebConfiguration.getKeystoreDefaultEnabled()) {
%>
<div class="methodChooseContainer col-xs-3 col-sm-3 col-md-3 col-lg-3">
@@ -159,8 +159,9 @@
</div>
<%
}
- %> -->
+ %>
</div>
+ <iframe id='mobileSignOnFrame' style="display:none;"></iframe>
</div>
</fieldset>
</div>