Skip to content

Commit

Permalink
Update teller.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dfralan authored Dec 3, 2023
1 parent 7b11923 commit 27a9aef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions teller.js
Original file line number Diff line number Diff line change
Expand Up @@ -1389,13 +1389,13 @@
tellerTag.innerHTML = styleSheetTeller + tellerBrick;
//Get form entries for feedback query
function urlFeedbackConstructor(){
ffu = tellerTag.getAttribute("formUrl")
ss = ffu.match("https(.*)/viewform");
let ffu = tellerTag.getAttribute("formUrl")
let ss = ffu.match("https(.*)/viewform");
var formEntries = ffu.match(/entry.([0-9]+)/g);
entryA = formEntries[0];
entryB = formEntries[1];
entryC = formEntries[2];
entryD = formEntries[3];
let entryA = formEntries[0];
let entryB = formEntries[1];
let entryC = formEntries[2];
let entryD = formEntries[3];
return ss[0].replace("viewform", "formResponse?usp=pp_url");
}

Expand Down

0 comments on commit 27a9aef

Please sign in to comment.