Remove console.logs

This commit is contained in:
Ben Hardill 2020-02-26 19:46:54 +00:00
parent 0ca36a89e3
commit 7723ff461b
No known key found for this signature in database
GPG Key ID: 74DD076979ABB1E7
1 changed files with 0 additions and 5 deletions

View File

@ -174,13 +174,10 @@
console.log("paytoqs: " + this.paytoqs);
if (this.paytoqs === true || this.paytoqs == "query") {
$("#node-input-paytoqs").val("query");
console.log("q");
} else if (this.paytoqs === "body") {
$("#node-input-paytoqs").val("body");
console.log("b");
} else {
$("#node-input-paytoqs").val("ignore");
console.log("i");
}
if (this.authType) {
$('#node-input-useAuth').prop('checked', true);
@ -240,8 +237,6 @@
if (!$("#node-input-useProxy").is(":checked")) {
$("#node-input-proxy").val("_ADD_");
}
console.log("save - paytoqs " + this.paytoqs);
console.log("save - paytoqs " + $("#node-input-paytoqs").val());
}
});
</script>