This commit is contained in:
kjeld Schouten-Lebbing 2021-08-15 12:50:07 +02:00
parent 1bf747f7fa
commit 679adaef93
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ To reach an app named "sabnzbd" within Sonarr, we can use the following internal
<SCRIPT LANGUAGE="JavaScript"> <SCRIPT LANGUAGE="JavaScript">
function testResults (form) { function process (form) {
var svcdns = generatesvc(form.name.value, form.app.value, form.service.value); var svcdns = generatesvc(form.name.value, form.app.value, form.service.value);
alert ("Service DNS Name: " + svcdns); alert ("Service DNS Name: " + svcdns);
console.log(svcdns) console.log(svcdns)
@ -55,7 +55,7 @@ function generatesvc(name, app, service) {
<input type="text" NAME="service"> <input type="text" NAME="service">
<P> <P>
<INPUT TYPE="button" NAME="button" Value="Click" onClick="testResults(this.form)"> <INPUT TYPE="button" NAME="button" Value="Click" onClick="process(this.form)">
#### Video Guide #### Video Guide